Jump to content

Registration form problem


marada

Recommended Posts

Hi @marada

You can check for an incorrect html opening/closing tag in the backoffice at the configuration of the Customer data privacy block module which displays the Customer data privacy text. The Sign up for our newsletter text can be modified at the configuration of Newsletter subscription the module; this should not contain any html tags, only text.

I hope that I could help.
Cheers,
Leo

Link to comment
Share on other sites

Thanks for respond, but everything not workin.

 

I found the soultion:

 $label = $this->trans(
            'Customer data privacy[1][2]%message%[/2]',
            [
                '[1]' => '<br>',
                '[2]' => '<em>',
                '%message%' => Configuration::get('CUSTPRIV_MSG_AUTH', $this->context->language->id)
                '[/2]' => '</em>',

Missing components here.

Now it's work:

$label = $this->trans(
            'Customer data privacy[1][2]%message%[/1][/2]',
            [
                '[1]' => '<br>',
                '[2]' => '<em>',
                '%message%' => Configuration::get('CUSTPRIV_MSG_AUTH', $this->context->language->id),
                '[/1]' => '</br>',
                '[/2]' => '</em>',

 

Closed

  • Like 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...