Jump to content

ajout d'un champ fiche produit


Recommended Posts

Bonjour à tous,

 

Je souhaite ajouter un champ pour afficher la taxe gasoil sur la fiche produit . Pour cela j'ai ajouté dans le fichier product.php:

 

/**@var taxe gasoil */

public $taxe_gasoil;

pour appeler ma variable

 

puis à la ligne protected $fieldsValidate =

 

'taxe_gasoil' => 'isCleanHtml',

 

Puis à la ligne protected $fieldsValidateLang =

 

'taxe_gasoil'=> 'IsString'

 

J'ai appelé tout cela dans le fichier admin/tabs/adminproducts

 

echo '

'.$this->l('taxe_gasoil:').';

foreach ($languages as $language)

 

echo ' < textarea class="rte" cols="100" rows="20" id="taxe_gasoil'.$language['id_lang'].'" name="taxe_gasoil'.$language['id_lang'].'">'.htmlentities(stripslashes($this->getFieldValue($obj, 'taxe_gasoil', $language['id_lang'])), ENT_COMPAT, 'UTF-8').'

 

Quand je regarde mon back office la taxe gasoil apparait mais sans case à côté pour matérialiser le nouveau champ et il doit y avoir une erreur car je n'arrive plus à ajouter de données dans la fiche produit . Prestashop me ramène toujours qu'il y a une erreur sur le fichier product ????

 

Je n'arrive pas à cerner d'ou vient mon erreur, pouvez vous m'aider à décoder

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