Jump to content
  • 0

Komunikat o błędzie z kodem html


prostrona

Question

Chciałbym dodać do domyślnego komunikatu o błędzie w koszyku element <a href="">link</a>

 

Kod /controllers/front/CartController.php wygląda tak:

elseif (!$update_quantity)
$this->errors[] = Tools::displayError('You already have the maximum quantity available for this product.', !Tools::getValue('ajax'));

Jak zmodyfikować ten kod aby przy wyświetleniu tego komunikatu na końcu pojawiał się link do koszyka:

 

You already have the maximum quantity available for this product - <a href="/order-opc/">view cart</a>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

 

przed średnikiem spróbuj dodać:

.'<a href="link">'.$this->l('link name').'</a>'

 

Niestety wyrzuca błąd.

 

Próbowałem

$this->errors[] = Tools::displayError('You already have the maximum quantity available for this product.', !Tools::getValue('ajax')).'<a href=link>test</a>';

ale wycina mi znaczniki html i zostawia tylko słowo test.

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