Jump to content

Creating a PrestaShop module


sacl02

Recommended Posts

here is the answer:

$this->ps_versions_compliancy = array('min' => '1.5', 'max' => '1.5');

 

this variable defines prestashop version in which module will work

in this case module will work only in 1.5 (which mean that it will not work for example in 1.5.4.1 and 1.5.1

 

you have to use:

 

$this->ps_versions_compliancy = array('min' => '1.5', 'max' => '1.5.4.1');

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...