Jump to content

EU Modul not Compliant


kalua

Recommended Posts

Hey all

 

After setup the new version of Prestashop (1.6.0.11) i just recognized that the absolutely necessary EU Modul is not compliant.

 

post-873637-0-16263800-1420703775_thumb.jpg

 

How can I fix this soon?

Becuase without that, i can't run the shop in the EU with correct laws ...

 

Link to comment
Share on other sites

The module developer should confirm compatibility.

 

You can try (but watch out) to find and change $this->ps_versions_compliancy variable to something like:

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

in /modules/module_name/module_name.php

Link to comment
Share on other sites

As far as I see it works with 1.6.0.11.

 

Open /modules/eu_legal/eu_legal.php

 

Modify module compliancy in line 73, so that the compliancy section looks like

// module compliancy: only for exactly one PS version
$this->ps_versions_compliancy = array(
	'min' => '1.6.0.7',
	'max' => '1.6.0.11'
);

That's all.

Link to comment
Share on other sites

×
×
  • Create New...