Autoload error - How to fix Magento Marketplace wizard installation error

Fixing Autoload Errors When Installing WeltPixel Extensions from Magento Marketplace
You may encounter an Autoload Error during installation from the Magento Marketplace if both the standalone extension and its dependency pack (the package name ending with -theme) are selected.
Normally, installation should work whether you select only the standalone extension or both the extension and its dependency pack.
However, if you do see an Autoload Error, you can resolve it quickly via SSH by removing the -theme dependency pack.
Quick Fix (General Steps)
- Connect to your server via SSH and navigate to your Magento root.
- Remove the dependency pack that ends with -theme using Composer.
- Run Magento setup upgrade.
- Disable maintenance mode (in case it was enabled by the installer).
Examples
Example 1: WeltPixel OWL Carousel Extension
Commands to run:
- composer remove weltpixel/m2-weltpixel-owl-carousel-slider-theme
- php bin/magento setup:upgrade
- php bin/magento maintenance:disable
Example 2: WeltPixel Quick View and Ajax Cart Extension
Commands to run:
- composer remove weltpixel/m2-weltpixel-quickview-theme
- php bin/magento setup:upgrade
- php bin/magento maintenance:disable
Example 3: WeltPixel Rich Snippets Extension
Commands to run:
- composer remove weltpixel/m2-weltpixel-google-cards-theme
- php bin/magento setup:upgrade
- php bin/magento maintenance:disable
Example 4: WeltPixel Google Analytics Enhanced Ecommerce Tag Manager
Commands to run:
- composer remove weltpixel/m2-weltpixel-google-tag-manager-theme
- php bin/magento setup:upgrade
- php bin/magento maintenance:disable
Notes
- Ensure you selected the correct package(s) for installation. If both the extension and its -theme dependency are installed and you get an error, remove only the -theme package.
- After completing the steps, re-check the extension status in your Magento Admin and proceed as needed.

Updated on: 16/09/2025
Thank you!
