Skip to content

Commit

Permalink
Move scripts to body
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Sep 18, 2024
1 parent 7b773a2 commit 8af6a6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ecomailemailmarketing/ecomailemailmarketing.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct()
$this->module_key = '3c90ebaffe6722aece11c7a66bc18bec';
$this->name = 'ecomailemailmarketing';
$this->tab = 'emailing';
$this->version = '2.0.21';
$this->version = '2.0.22';
$this->author = 'Ecomail';
$this->need_instance = 0;
$this->ps_versions_compliancy = ['min' => '1.7.0.0', 'max' => _PS_VERSION_];
Expand Down Expand Up @@ -112,7 +112,7 @@ public function setHooks(): bool
return
$this->registerHook('actionCustomerAccountAdd')
&& $this->registerHook('actionValidateOrder')
&& $this->registerHook('displayFooter')
&& $this->registerHook('displayAfterBodyOpeningTag')
&& $this->registerHook('actionCustomerNewsletterSubscribed')
&& $this->registerHook('actionCartSave')
&& $this->registerHook('actionCustomerAccountUpdate')
Expand Down Expand Up @@ -770,7 +770,7 @@ public function hookActionCartSave(array $params): void
}
}

public function hookDisplayFooter(array $params): string
public function hookDisplayAfterBodyOpeningTag(array $params): string
{
$this->context->smarty->assign(
[
Expand Down

0 comments on commit 8af6a6e

Please sign in to comment.