About PrestaShop -------- PrestaShop is an Open Source e-commerce web application, committed to providing the best shopping cart experience for both merchants and customers. It is written in PHP, is…
About PrestaShop
--------










PrestaShop is an Open Source e-commerce web application, committed to providing the best shopping cart experience for both merchants and customers. It is written in PHP, is highly customizable, supports all the major payment services, is translated in many languages and localized for many countries, has a fully responsive design (both front and back office), etc. [See all the available features][available-features].
This repository contains the source code of PrestaShop, which is intended for development and preview only. To download the latest stable public version of PrestaShop (currently, version 9.0), please go to [the releases page][download].
The first stable version of PrestaShop 9.0 was released on June 10th, 2025. Learn more about it on the Build devblog.
About the develop branch
--------
The develop branch of this repository contains the work in progress source code for the next version of PrestaShop. Currently, it is exclusively for version 9.1.
For more information on our branch system, read our guide on [installing PrestaShop for development][install-guide-dev].
Server configuration
--------
To install the latest PrestaShop 9.0, you need a web server running PHP 8.1+ and any flavor of MySQL 5.6+ (MySQL, MariaDB, Percona Server, etc.).
You will also need a database administration tool, such as phpMyAdmin, in order to create a database for PrestaShop.
We recommend the Apache or Nginx web servers (check out our [example Nginx configuration file][example-nginx]).
You can find more information on our [System requirements][system-requirements] page and on the [System Administrator Guide][sysadmin-guide].
Installation
--------
If you downloaded the source code from GitHub, read our guide on [installing PrestaShop for development][install-guide-dev]. If you intend to install a production shop, make sure to download the latest version from [our releases page][download], then read the [install guide for users][install-guide].
🐳 Docker Development Environment
PrestaShop provides a complete Docker-based development environment.
Quick Start
bash
# Start the development environment
make docker-start
# Access your PrestaShop installation
# Frontend: http://localhost:8001
# Backend: http://localhost:8001/admin-dev
# Email testing: http://localhost:1080
Default Admin Credentials:
- Email:
[email protected] - Password:
Pr3st4Sh0P
Or the backoffice on this URL: http://localhost:8001/admin-dev (default access credentials: [email protected] / Pr3st4Sh0P) You can customize the admin credentials by setting the following environment variables before running docker compose:
export [email protected]
export ADMIN_PASSWD=Your-Secure-Password
docker compose up
Docker will bind your port 8001 to the web server. If you want to use other port, open and modify the file docker-compose.yml.
MySQL credentials can also be found and modified in this file if needed.
Note: Before auto-installing PrestaShop, this container checks the file *app/config/parameters.php* does not exist on startup.
If you expect the container to (re)install your shop, remove this file if it exists. And make sure the container user www-data
has write access to the whole workspace.
Documentation
For detailed information, see:
- [🚀 Development Guide](./docs/DEVELOPMENT.md) - Complete setup and development guide
For technical information (core, module and theme development, performance...), head on to [PrestaShop DevDocs][devdocs]
If you want to learn how to use PrestaShop 9, read our [User documentation][user-doc].
First-time users will be particularly interested in the following guides:
- [Getting Started][getting-started]: How to install PrestaShop, and what you need to know.
- [User Guide][user-guide]: All there is to know to put PrestaShop to good use.
- [Updating Guide][updating-guide]: Switching to the newest version is not trivial. Make sure you do it right.
- [Merchant's Guide][merchant-guide]: Tips and tricks for first-time online sellers.
- The [FAQ][faq-17] page should also be of tremendous help to you.
Contributing
--------
PrestaShop is an Open Source project, and it wouldn't be possible without the help of the [hundreds of contributors][contributors-md], who submitted improvements and bugfixes over the years. Thank you all!
If you want to contribute code to PrestaShop, read the [CONTRIBUTING.md][contributing-md] file in this repository or read the [tutorials about contribution][contributing-tutorial] on the documentation site.
Don't know where to start? Check the good first issue label to have a look at all beginner-friendly improvements and bug fixes.
If you want to help translate PrestaShop in your language, [join us on Crowdin][crowdin]!
If using AI tools to write code, make sure your agent has read the [.ai/CONTEXT.md](.ai/CONTEXT.md) file. You can find more details in our dev doc regarding AI assisted development.
Reporting Issues
--------
Our bugtracker is on GitHub. We encourage you to [create detailed issues][create-issue] as soon as you see them.
Read our [Contribute by reporting issues guide][reporting-issues] for details and tips.
Reporting Security Issues
--------
Responsible (and private) disclosure is a standard practice when someone encounters a security problem: before making it public, the discoverer informs the Core team about it, so that a fix can be prepared, and thus minimize the potential damage.
The PrestaShop team tries to be very proactive when preventing security problems. Even so, critical issues might surface without notice.
This is why we have set up a [Bug Bounty Program][bug-bounty] where anyone can privately contact us with all the details about issues that affect the security of PrestaShop merchants or customers. Our security team will answer you, and discuss of a timeframe for your publication of the details.
Understanding a security issue means knowing how the attacker got in and hacked the site. If you have those details, then please do contact us privately about it (and please do not publish those details before we answer). If you do not know how the attacker got in, please [ask for help][support].
Extending PrestaShop
--------
PrestaShop is a very extensible e-commerce platform, both through modules and themes. Developers can even override the default components and behaviors. Learn more about this on the [Modules documentation][modules-devdocs] and the [Themes documentation][themes-devdocs].
Community forums
--------
You can discuss about e-commerce, help other merchants and get help, and contribute to improving PrestaShop together with the PrestaShop community on [PrestaShop Slack channel][chat], [project's discussions on GitHub][ghdiscussions] or on the [the PrestaShop forums][forums].
Thank you for downloading and using the PrestaShop Open Source e-commerce solution!
[available-features]: https://prestashop.com/create-online-store/
[download]: https://www.prestashop-project.org/releases/prestashop90/
[forums]: https://www.prestashop.com/forums/
[ghdiscussions]: https://github.com/PrestaShop/PrestaShop/discussions
[support]: https://www.prestashop-project.org/support/
[chat]: https://www.prestashop-project.org/slack/
[user-doc]: https://docs.prestashop-project.org
[contributing-md]: CONTRIBUTING.md
[contributing-tutorial]: https://devdocs.prestashop-project.org/9/contribute/
[crowdin]: https://crowdin.net/project/prestashop-official
[getting-started]: https://docs.prestashop-project.org/v.8-documentation/v/english/getting-started
[user-guide]: https://docs.prestashop-project.org/v.8-documentation/v/english/user-guide
[updating-guide]: https://docs.prestashop-project.org/1-6-documentation/english-documentation/updating-prestashop
[merchant-guide]: https://docs.prestashop-project.org/1-6-documentation/english-documentation/merchants-guide
[faq-17]: https://devdocs.prestashop-project.org/9/faq/
[sysadmin-guide]: https://docs.prestashop-project.org/1-6-documentation/english-documentation/system-administrator-guide
[contributors-md]: CONTRIBUTORS.md
[example-nginx]: https://devdocs.prestashop-project.org/9/basics/installation/nginx/
[docker-compose]: https://docs.docker.com/compose/
[install-guide-dev]: https://devdocs.prestashop-project.org/9/basics/installation/
[system-requirements]: https://devdocs.prestashop-project.org/9/basics/installation/system-requirements/
[install-guide]: https://docs.prestashop-project.org/v.8-documentation/v/english/getting-started/installing-prestashop
[devdocs]: https://devdocs.prestashop-project.org/
[create-issue]: https://github.com/PrestaShop/PrestaShop/issues/new/choose
[reporting-issues]: https://devdocs.prestashop-project.org/9/contribute/contribute-reporting-issues/
[modules-devdocs]: https://devdocs.prestashop-project.org/9/modules/
[themes-devdocs]: https://devdocs.prestashop-project.org/9/themes/
[bug-bounty]: https://www.prestashop-project.org/security/bug-bounty/
Members
-
PrestaShop ★ PINNED
PrestaShop is the universal open-source software platform to build your e-commerce solution.
PHP ★ 9.2k 23h agoExplain → -
docs ★ PINNED
PrestaShop technical documentation
Scala ★ 134 8d agoExplain → -
prestashop-specs ★ PINNED
Project specifications for PrestaShop's Core features and native modules
HTML ★ 34 1y agoExplain → -
docker ★ PINNED
🐳
Dockerfile ★ 279 16d agoExplain → -
autoupgrade ★ PINNED
Update Assistant, a module dedicated in updating PrestaShop to the latest version
PHP ★ 129 3d agoExplain → -
open-source ★ PINNED
Sources for www.prestashop-project.org
Shell ★ 38 2mo agoExplain → -
prestashop-icon-font
An open source icon pack made with love by the PrestaShop design team. You can use it everywhere to make your designs and websites look awesome.
CSS ★ 317 10y agoExplain → -
example-modules
Example PrestaShop modules
Twig ★ 218 2d agoExplain → -
PrestaShop-webservice-lib
PHP client for PrestaShop Webservices
PHP ★ 216 28d agoExplain → -
PrestaShop-modules
Partner and native modules
★ 199 2y agoExplain → -
StarterTheme ▣
[DEPRECATED] PrestaShop Starter Theme
Smarty ★ 179 7y agoExplain → -
hummingbird
Default theme for PrestaShop 9.1+
Smarty ★ 130 9d agoExplain → -
php-ps-info
Simple script that allows you to test if your current environment fulfills PrestaShop's system requirements, and offers suggestions for improvements.
PHP ★ 117 2y agoExplain → -
community-theme-16 ▣
Basic PrestaShop 1.6 Bootstrap theme which focuses on extendability. This theme is maintained by PrestaShop community, not by PrestaShop SA.
Smarty ★ 66 8y agoExplain → -
ps_facetedsearch
PrestaShop module that adds layered navigation filters.
PHP ★ 62 1d agoExplain → -
gsitemap
This module generates your Google sitemap file
PHP ★ 61 2d agoExplain → -
paymentexample
Payment module example that you can use as a guide to start your own.
PHP ★ 56 5mo agoExplain → -
classic-theme
Default theme for PrestaShop 1.7 and 8+
Smarty ★ 50 2mo agoExplain → -
prestashop-ui-kit
UI kit for PrestaShop Backoffice - A collection of styled components, based on Bootstrap 4
HTML ★ 49 8mo agoExplain → -
ps_emailalerts
Sends e-mail notifications to customers and merchants regarding stock and order modifications.
PHP ★ 44 2mo agoExplain → -
blockwishlist
Adds a block containing the customer's wishlists.
PHP ★ 43 16h agoExplain → -
ps_googleanalytics
Gain clear insights into important metrics about your customers, using Google Analytics.
PHP ★ 41 1d agoExplain → -
prestashop.github.io
PrestaShop Build: Official blog for PrestaShop development straight from the product and core dev team.
SCSS ★ 41 4d agoExplain → -
prestashop-flashlight
A docker based testing utility for PrestaShop
Shell ★ 39 3d agoExplain → -
pscleaner ▣
This module allows you to check and fix functional integrity constraints and remove default data
PHP ★ 39 5y agoExplain → -
circuit-breaker
A resilient PHP library that allows to safely make calls to external services
PHP ★ 38 1y agoExplain → -
PrestaShop-1.4 ▣
Open-source e-commerce solution version 1.4
PHP ★ 38 11y agoExplain → -
php-dev-tools
PHP Coding Standards for PrestaShop projects
PHP ★ 37 2mo agoExplain → -
PrestaShop-1.6 ▣
Open-source e-commerce solution version 1.6
PHP ★ 36 3y agoExplain → -
productcomments
PrestaShop module that allows users to post reviews and rate products.
PHP ★ 32 1d agoExplain → -
psgdpr
Official GDPR compliance module
JavaScript ★ 32 2mo agoExplain → -
TranslationFiles
[READ-ONLY] This repository contains all the necessary files to generate translation packs for PrestaShop 1.6, 1.7 and higher. It's updated automatically.
HTML ★ 24 16h agoExplain → -
prestashop-shop-creator
Generate random demo data to test your PrestaShop shop.
PHP ★ 24 2y agoExplain → -
mailalerts ▣
Sends e-mail notifications to customers and merchants in PrestaShop 1.6.
PHP ★ 23 5y agoExplain → -
PrestaShop-1.5 ▣
Open-source e-commerce solution version 1.5
PHP ★ 22 6y agoExplain → -
prestonbot ▣
Preston, the PrestaShop contributor's best friend! :sparkles:
PHP ★ 22 2y agoExplain → -
PrestaShop-norm-validator ▣
No description.
PHP ★ 20 10y agoExplain → -
blockreassurance
Adds an information block aimed at offering helpful information to reassure customers that your store is trustworthy.
PHP ★ 18 2d agoExplain → -
PrestaShopAutomationFramework ▣
Framework for writing automated tests for PrestaShop
PHP ★ 18 11y agoExplain → -
decimal
An object-oriented implementation of basic math operation with arbitrary precision, using BC Math if available.
PHP ★ 17 3y agoExplain → -
ps_wirepayment
PrestaShop module that allows to accept payments for your products via bank wire transfer.
PHP ★ 16 12d agoExplain → -
ps_linklist
Adds a block with several links.
PHP ★ 14 5mo agoExplain → -
webservice-postman-examples
This repository contains example API requests and configuration for Postman API Platform
★ 14 2y agoExplain → -
ps_apiresources
Includes the resources allowing using the API for the PrestaShop domain, all endpoints are based on CQRS commands/queries from the Core and we APIPlatform framework is used as a base.
PHP ★ 13 2d agoExplain → -
ps_cashondelivery
Accept cash on delivery payments
PHP ★ 13 4d agoExplain → -
bankwire ▣
Accept payments for your products via bank wire transfer in PrestaShop 1.6.
PHP ★ 13 6y agoExplain → -
loyalty ▣
Provide a loyalty program to your customers.
PHP ★ 13 5y agoExplain → -
ps_qualityassurance
Magic module to test module integration in PrestaShop
Vue ★ 13 1y agoExplain → -
standard_coding_hook ▣
Git hooks that verifies if your commit message respects the norm
PHP ★ 13 11y agoExplain → -
ps_imageslider
Adds an image slider to your PrestaShop homepage.
PHP ★ 12 5mo agoExplain → -
docker-internal-images
Docker images with PrestaShop pre-installed and MySQL included
Shell ★ 12 7mo agoExplain → -
referralprogram ▣
Integrate a referral program system into your shop.
PHP ★ 12 5y agoExplain → -
watermark ▣
Protect image by watermark.
PHP ★ 12 5y agoExplain → -
performance-project
Tools to benchmark PrestaShop.
Scala ★ 12 5y agoExplain → -
ps_crossselling
Adds a "Customers who bought this product also bought..." section to every product page.
PHP ★ 11 1d agoExplain → -
ps_shoppingcart
Adds a block containing the customer's shopping cart.
PHP ★ 11 4mo agoExplain → -
mjml-theme-converter
Tool used to convert a PrestaShop mail theme from MJML to twig
Twig ★ 11 1y agoExplain → -
ganalytics ▣
Gain clear insights into important metrics about your customers, using Google Analytics in PrestaShop 1.6.
PHP ★ 11 5y agoExplain → -
PrestaShop-backward_compatibility ▣
Backward compatibility module for PrestaShop
PHP ★ 11 11y agoExplain → -
prestafony-project ▣
Some resources to help you migrate PrestaShop to Symfony 3
PHP ★ 11 6y agoExplain → -
docker-templates
Docker & docker-compose templates
Dockerfile ★ 10 5mo agoExplain → -
ps_themecusto
This module guides the merchant on customizing the look of their shop
PHP ★ 10 5mo agoExplain → -
ADR
Architecture Decision Records for the PrestaShop project
★ 10 7mo agoExplain → -
contactform
Adds a contact form to the "Contact us" page
PHP ★ 9 2d agoExplain → -
zip-archives
This repository hosts PrestaShop ZIP published archives.
★ 9 10mo agoExplain → -
ps_reminder ▣
Follow-up with your customers by sending abandonment cart emails and other reminders.
PHP ★ 9 5y agoExplain → -
ps_emailsubscription
Adds a block for newsletter subscription.
PHP ★ 8 1d agoExplain → -
ps_sharebuttons
Displays social media sharing buttons (Twitter, Facebook, Google+ and Pinterest) on every product page.
PHP ★ 8 5mo agoExplain → -
ps_searchbar
Adds a quick search field to your PrestaShop.
PHP ★ 8 5mo agoExplain → -
cashondelivery ▣
Accept cash on delivery payments in PrestaShop 1.6.
PHP ★ 8 5y agoExplain → -
ps_categoryproducts
Adds a block on the product page that displays products from the same category.
PHP ★ 7 1d agoExplain → -
dashproducts
Adds a block with a table of your latest orders and a ranking of your products.
PHP ★ 7 2d agoExplain → -
traces
Micro CLI application to get all GitHub contributors for a specified repository
PHP ★ 7 5d agoExplain → -
ps_mainmenu
Adds a new horizontal menu to the top of your PrestaShop
PHP ★ 7 5mo agoExplain → -
docker-ci
Contains the latest version of a Git branch from the PrestaShop repository. Useful to get at all time the latest changes or to test a specific pull-request.
Dockerfile ★ 7 3y agoExplain → -
pagesnotfound
Adds a tab to the Stats dashboard, showing the pages requested by your visitors that have not been found.
PHP ★ 6 2d agoExplain → -
ps_socialfollow
Allows you to add information about your brand's social networking accounts.
PHP ★ 6 2mo agoExplain → -
statsdata
Data mining for statistics
PHP ★ 6 5mo agoExplain → -
phpstan-prestashop
PHPStan extension for PrestaShop
PHP ★ 6 4y agoExplain → -
favoriteproducts ▣
Display a page featuring the customer's favorite products.
PHP ★ 6 6y agoExplain → -
vatnumber ▣
Enables you to enter the intra-community VAT number when creating the address.
PHP ★ 6 2y agoExplain → -
firebaseauthenticator ▣
Handle login on the PrestaShop back-office with Firebase.
PHP ★ 6 6y agoExplain → -
issuebot
A bot for automating issue status
JavaScript ★ 6 2y agoExplain → -
childtheme-example
PrestaShop introduces a Parent/child theme feature. This is a very basic child theme, that modifies some small details in Classic
Smarty ★ 6 9y agoExplain → -
blocklayered ▣
[DEPRECATED] Layered navigation block for PrestaShop 1.6
PHP ★ 6 6y agoExplain → -
ps_viewedproduct
Shows to your shop's users which products they recently viewed.
PHP ★ 5 1d agoExplain → -
ps_checkpayment
PrestaShop module that allows you to accept payments by check.
PHP ★ 5 1d agoExplain → -
ps_categorytree
PrestaShop module that adds a block featuring product categories.
PHP ★ 5 1d agoExplain → -
distribution-api
API to inform about core & module releases
PHP ★ 5 17d agoExplain → -
TranslationToolsBundle
Parse and manage your translations with ease
PHP ★ 5 1mo agoExplain → -
skills
Set of skills for AI agents
★ 5 2mo agoExplain → -
ps_featuredproducts
Displays featured products in the central column of your homepage.
PHP ★ 5 16h agoExplain → -
bootstrap-compatibility-layer
Bootstrap compatibility layer to help using a module based on bootstrap 4 with a theme based on bootstrap 5
HTML ★ 5 1y agoExplain → -
welcome ▣
This module helps merchants create their first product and discover their new shop's main features.
PHP ★ 5 3y agoExplain → -
followup ▣
Follow-up with your customers with daily customized e-mails in PrestaShop 1.6.
PHP ★ 5 5y agoExplain → -
feeder ▣
Generate a RSS feed for your latest products in PrestaShop 1.6.
PHP ★ 5 6y agoExplain → -
gapi ▣
Google Analytics API
PHP ★ 5 5y agoExplain → -
PSFunctionalTests ▣
Functional testing scenarios
JavaScript ★ 5 6y agoExplain → -
translationsenglish ▣
Search all translation which are english and change key in all files
PHP ★ 5 13y agoExplain → -
ps_specials
Displays your products that are currently on sale in a dedicated block.
PHP ★ 4 1d agoExplain → -
ps_customersignin
Adds a block that displays information about the customer.
PHP ★ 4 1d agoExplain → -
ps_contactinfo
Allows you to display additional information about your store's customer service.
PHP ★ 4 1d agoExplain → -
ps_banner
PrestaShop module that displays a banner on your store.
PHP ★ 4 1d agoExplain → -
ps_bestsellers
Adds a block displaying your store's top-selling products.
PHP ★ 4 1d agoExplain → -
presthubot
PrestaShop maintainer's best friend
PHP ★ 4 4d agoExplain → -
devdocs-site
Site for the technical documentation
TypeScript ★ 4 4d agoExplain → -
ps_customtext
Adds custom text in your store.
PHP ★ 4 5d agoExplain → -
ps_newproducts
Displays a block featuring your store's newest products.
PHP ★ 4 10d agoExplain → -
ga.tests.ui.pr
Run all OS project tests on a Pull request
★ 4 1mo agoExplain → -
ps_distributionapiclient
Allows to install & update native modules from the Back office
PHP ★ 4 5mo agoExplain → -
ps_dataprivacy
Adds a block displaying your data privacy policy for more transparency and reassurance.
PHP ★ 4 5mo agoExplain → -
ps_fixturescreator
No description.
PHP ★ 4 1y agoExplain → -
statslive ▣
Adds a list of customers and visitors who are currently online to the Stats dashboard.
PHP ★ 4 4y agoExplain → -
ws-client
A webservice client library for PrestaShop written in TypeScript
TypeScript ★ 4 2y agoExplain → -
ps_feeder ▣
Generate a RSS feed for your latest products.
PHP ★ 4 5y agoExplain → -
sekeywords ▣
Displays which keywords have led visitors to your website.
PHP ★ 4 5y agoExplain → -
ps_searchbarjqauto
Adds a quick search field to your website with autosuggestions using Pixabay/jQuery-autoComplete
PHP ★ 4 6y agoExplain → -
core-weekly-generator ▣
CLI application to generate the Core weekly
Python ★ 4 3y agoExplain → -
QANightlyResults
A script to browse test reports and display some stats. For PrestaShop E2E tests.
PHP ★ 3 1d agoExplain → -
test-scenarios
Test scenarios for the PrestaShop Open Source Project
PHP ★ 3 1d agoExplain → -
ps_currencyselector
Adds a block allowing customers to choose their preferred shopping currency.
PHP ★ 3 1d agoExplain → -
ps_brandlist
Displays a block listing product brands.
PHP ★ 3 1d agoExplain → -
ps_onepagecheckout
PrestaShop’s native one-page checkout module.
PHP ★ 3 22h agoExplain → -
advancedeucompliance ▣
This module helps merchants in getting compliant with applicable e-commerce law in PrestaShop 1.6.
PHP ★ 3 6y agoExplain → -
nightly-board
Displays information about PrestaShop nightly builds
Vue ★ 3 2mo agoExplain → -
minimal-theme
No description.
Makefile ★ 3 3mo agoExplain → -
statsproduct
Adds detailed statistics for each product to the Stats dashboard.
PHP ★ 3 5mo agoExplain → -
statssales
Adds graphics presenting the evolution of sales and orders to the Stats dashboard.
PHP ★ 3 5mo agoExplain → -
statsstock
Adds a tab showing the quantity of available products for sale to the Stats dashboard.
PHP ★ 3 5mo agoExplain → -
ps_supplierlist
Adds a block with a list of your product suppliers on your shop.
PHP ★ 3 5mo agoExplain → -
ps-org-theme
Theme for prestashop-project.org site
HTML ★ 3 1y agoExplain → -
user-documentation-v8-en
No description.
★ 3 2y agoExplain → -
GitHubMonitoring ▣
:octocat: GitHub real-time monitoring for inner source / closed source teams office screens :tv:
JavaScript ★ 3 9y agoExplain → -
rtlcss-php ⑂ ▣
RtlCss is a PHP library for converting LTR CSS to RTL.
PHP ★ 3 8y agoExplain → -
blocktopmenu ▣
Adds a new horizontal menu to the top of your e-commerce website in PrestaShop 1.6.
PHP ★ 3 6y agoExplain → -
statsbestproducts
Adds a list of the best-selling products to the Stats dashboard.
PHP ★ 2 1d agoExplain → -
ps_customeraccountlinks
Displays a block with links relative to a user's account.
PHP ★ 2 1d agoExplain → -
gridhtml
Allows the statistics system to display data in a grid.
PHP ★ 2 2d agoExplain → -
dashgoals
Adds a block with your store's forecast.
PHP ★ 2 2d agoExplain → -
dashtrends
Adds a block whith the evolution of your stores main numbers along with a graphic.
PHP ★ 2 2d agoExplain → -
dashactivity
Displays an activity widget in the Back office dashboard.
PHP ★ 2 2d agoExplain → -
TopContributors
A website to thank every PrestaShop Code contributor
Vue ★ 2 15h agoExplain → -
ps-monitor-module-releases
No description.
PHP ★ 2 18h agoExplain → -
LocalizationFiles
Contains localization data for PrestaShop shops
★ 2 1mo agoExplain → -
pshotfix_ghsaw9f3qc75qgx9
No description.
PHP ★ 2 3mo agoExplain → -
ps_languageselector
Adds a block allowing customers to select a language for your store's content.
PHP ★ 2 5mo agoExplain → -
statsbestcategories
Adds a list of the best categories to the Stats dashboard.
PHP ★ 2 5mo agoExplain → -
statsbestmanufacturers
Adds a list of the best manufacturers to the Stats dashboard.
PHP ★ 2 5mo agoExplain → -
statscatalog
Adds a tab containing general statistics about your catalog to the Stats dashboard.
PHP ★ 2 5mo agoExplain → -
ps_faviconnotificationbo
Displays a small icon over the favicon, only in back office, showing the number of notifications
PHP ★ 2 5mo agoExplain → -
blocksocial ▣
Allows you to add information about your brand's social networking accounts in PrestaShop 1.6.
PHP ★ 2 6y agoExplain → -
autoload
This repository contains the autoloader of legacy PrestaShop framework
PHP ★ 2 2y agoExplain → -
stylelint-browser-compatibility
Disallow CSS properties that aren't supported by your target browser audience
JavaScript ★ 2 2y agoExplain → -
ps_legalcompliance ▣
This module helps merchants in getting compliant with applicable e-commerce law.
PHP ★ 2 5y agoExplain → -
keycloak_connector_demo
Demo module of how to use Keycloak as OAuth2 Authentication Server for the new API
PHP ★ 2 1y agoExplain → -
Prestashop-BO-themes-package
No description.
JavaScript ★ 2 5mo agoExplain → -
user-documentation-es
PrestaShop user documentation (ES)
★ 2 2y agoExplain → -
PythonTests ▣
Old automated tests for PrestaShop 1.7
Python ★ 2 9y agoExplain → -
demonstration ▣
This module install a complete Shop with demo data
PHP ★ 2 10y agoExplain → -
translatools ▣
Translation tool
PHP ★ 2 10y agoExplain → -
emailgenerator ▣
Generates translated emails for PrestaShop 1.6
PHP ★ 2 9y agoExplain → -
statssearch
Adds a tab to the Stats dashboard, showing which keywords have been searched by your store's visitors.
PHP ★ 1 1d agoExplain → -
graphnvd3
NVD3 Charts
PHP ★ 1 2d agoExplain → -
ui-testing-library
No description.
TypeScript ★ 1 3d agoExplain → -
SeamlessUpgradeToolbox
No description.
Shell ★ 1 11d agoExplain → -
native-modules
List of PrestaShop's native modules. Used by https://github.com/PrestaShop/distribution-api
★ 1 18d agoExplain → -
user-documentation-1.6
PrestaShop user documentation for version 1.6 and before
★ 1 2y agoExplain → -
.github
Default community health files
★ 1 1mo agoExplain → -
statscheckup
Adds a quick evaluation of your catalog quality to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
statsbestsuppliers
Adds a list of the best suppliers to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
statsbestvouchers
Adds a list of the best vouchers to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
statscarrier
Adds a graph displaying each carriers' distribution to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
statsforecast
This is the main module for the Stats dashboard. It displays a summary of all your current statistics.
PHP ★ 1 5mo agoExplain → -
statsnewsletter
Adds a tab with a graph showing newsletter registrations to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
statsregistrations
Adds a registration progress tab to the Stats dashboard.
PHP ★ 1 5mo agoExplain → -
user-documentation-it
PrestaShop user documentation (Italian)
★ 1 2y agoExplain → -
blockcustomerprivacy ▣
Adds a block displaying a message about a customer's privacy data in PrestaShop 1.6
PHP ★ 1 6y agoExplain → -
CoreUpgradeBundle
Symfony bundle containing the tools to handle PrestaShop upgrade
★ 1 2y agoExplain → -
CLIUpgrade
Symfony application containing CLI commands to handle PrestaShop upgrade
★ 1 2y agoExplain → -
PHP-CSS-Parser ⑂ ▣
Temporary fork while waiting for https://github.com/sabberworm/PHP-CSS-Parser/pull/124
PHP ★ 1 8y agoExplain → -
user-documentation-fr
PrestaShop user documentation (FR)
★ 1 2y agoExplain → -
DocToolsBundle
Helper tools for documentation
PHP ★ 1 3y agoExplain → -
InstallUnpacker ▣
No description.
PHP ★ 1 8y agoExplain → -
CldrCleaner ▣
No description.
PHP ★ 1 10y agoExplain → -
backwardcompatibility ▣
Improves backwards compatibility to modules not compatible with PS >= 1.5
PHP ★ 1 9y agoExplain → -
themeinstallator ▣
Export or Install a theme and its modules on your shop.
PHP ★ 1 9y agoExplain → -
blockreinsurance ▣
Adds an information block aimed at offering helpful information to reassure customers that your store is trustworthy.
PHP ★ 1 6y agoExplain → -
composer-script-handler ▣
Install PrestaShop modules using composer
PHP ★ 1 7y agoExplain → -
blocknewsletter ▣
Adds a block for newsletter subscription in PrestaShop 1.6.
PHP ★ 1 6y agoExplain → -
kanbanbot
Kanban Bot - Used to automatically populate the Kanban used to monitor PRs in progress
PHP ★ 0 4d agoExplain → -
ps-docs-theme
Hugo theme for docs sites
HTML ★ 0 4mo agoExplain → -
statsbestcustomers
Adds a list of the best customers to the Stats dashboard.
PHP ★ 0 5mo agoExplain → -
statspersonalinfos
Adds information about your registered customers (such as gender and age) to the Stats dashboard.
PHP ★ 0 5mo agoExplain → -
issue_templates_poll
No description.
★ 0 6mo agoExplain → -
PHP-SQL-Parser ⑂
A pure PHP SQL (non validating) parser w/ focus on MySQL dialect of SQL
PHP ★ 0 1y agoExplain → -
user-documentation-en
PrestaShop user documentation (EN)
★ 0 2y agoExplain → -
TopTranslators
Top translators tribute page
HTML ★ 0 2y agoExplain → -
smarty ⑂ ▣
Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic.
★ 0 4y agoExplain → -
laminas-code-lts ⑂
Extensions to the PHP Reflection API, static code scanning, and code generation
PHP ★ 0 3y agoExplain → -
onboarding ▣
The OnBoarding module greets first-time users to their PrestaShop back office: through a small playful interface, it shows the user how to launch his/her shop in several easy steps in PrestaShop 1.6.
Smarty ★ 0 6y agoExplain →
No repos match these filters.