Opencart Versions Save

A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.

3.0.3.9

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/3.0.3.8...3.0.3.9

4.0.2.3

7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/4.0.2.2...4.0.2.3

4.0.2.2

9 months ago

FIXES https://github.com/opencart/opencart/releases/tag/4.0.2.2

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/4.0.2.1...4.0.2.2

4.0.2.0

1 year ago

https://github.com/opencart/opencart/releases/tag/4.0.2.0

Changes

  • Works with PHP 8.2
  • Changed the route to use . instead of using | for compatibility with some payment gateways
  • Payment methods need to be updated:
$method_data = [];

if ($status) {
    $method_data = [
        'code'       => 'bank_transfer',
        'title'      => $this->language->get('heading_title'),
        'sort_order' => $this->config->get('payment_bank_transfer_sort_order')
    ];
}

has changed to:

$method_data = [];

if ($status) {
    $option_data['bank_transfer'] = [
        'code' => 'bank_transfer.bank_transfer',
        'name' => $this->language->get('heading_title')
    ];

    $method_data = [
        'code'       => 'bank_transfer',
        'name'       => $this->language->get('heading_title'),
        'option'     => $option_data,
        'sort_order' => $this->config->get('payment_bank_transfer_sort_order')
    ];
}

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/4.0.1.1...4.0.2.0

4.0.1.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/4.0.1.0...4.0.1.1

4.0.1.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/opencart/opencart/compare/4.0.0.0...4.0.1.0

4.0.0.0

1 year ago

Its finally here! OpenCart 4.0.0.0. After many years hard work.

ADDED PHP 8.1+ Compatibly New event based extension system Startup page CRON job page GDPR Product variants. You can now choose to use create a new product variant based off a master product and link the stock quantities. Cookie accept policy. Admin notification system. OpenCart can now send you updates and news information directly to your OpenCart admin. Autoloader class Telephone field now optional Additional admin security, renaming admin folder, install directory, moving storage folder.

UPDATED Boootstrap 5 jQuery v3.6.0 Font Awsome 6 CKEditor 5 Renamed order_recurring to subscription system. Sliding buttons instead of checkboxes All forms are now using AJAX. New installer Upgrade system can be done fully via the admin. Reports system. Admin alerts. Backup system now backs up the database in parts to avoid crashing with large tables. Order editor has been completely reworked so API session is not required.

REMOVED OCMOD All 3rd party extensions. There is a system to download and add core extensions directly to the extension pages.

3.0.3.8

2 years ago

RTL related issues resolved Resolved other Github issues.

Version released by https://webkul.com/

3.0.3.7

3 years ago

A collection of fixes for 3.0.3.6 issues.

Big thanks to Webkul and his team for helping get this release ready!

https://webkul.com/

Extensions https://www.opencart.com/index.php?route=marketplace/extension&filter_member=webkul