Appearance
Upgrade
Version 1.3 - 1 June 2025
- Fixed some processing logic
- Handle missing user emails
- Auto update routes added
Upgrade Guide from 1.2 to 1.3
- Upload the ZIP file to the project directory.
- Extract the files and replace them if prompted.
- Visit
yourdomain.com/admin/ac/update
- Done
Version 1.2 - 24 May 2025
- Fixed the issue with emails not being sent.
- Updated the mail design.
Upgrade Guide from 1.1 to 1.2
Upload the ZIP file to the project directory.
Extract the files and replace them if prompted.
Open the
.env
file and locate theQUEUE_CONNECTION
variable. Change its value todatabase
. If the line does not exist, add it.envQUEUE_CONNECTION=database
Open
app\Console\Kernel.php
and update the following code:php/** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('queue:work --stop-when-empty')->everyMinute()->withoutOverlapping(); // this line is new $schedule->command('abandoned-cart:handle')->everyMinute(); $schedule->command('abandoned-cart:send-mail')->everyMinute(); $schedule->command('abandoned-cart:mark-as-lost')->daily(); }
Done.
Version 1.1 - 5 May 2025
- Fixed some minor issues.
- Added compatibility with Active eCommerce 9.9.1.
Upgrade Guide from 1.0 to 1.1
- Upload the ZIP file to the project directory.
- Extract the files and replace them if prompted.
- Done.
Version 1.0 - 25 June 2024
- Initial release.