Ayant eu besoin d'ajouter des champs au formulaire de contact lié au bouton "Poser une question sur ce produit" dans VM 2, je vous poste ici la méthode (tiré de ce post, mais qui a des erreurs : https://forum.virtuemart.net/index.php?topic=96345.0):
L'exemple est pour le numéro de tel, mais il peut bien sûr marcher pour tout ce que vous voulez. J'ai ajouté le champ TEST, pour vous montrer. J'ai choisi de rentre le téléphone obligatoire et le champ TEST facultatif.
Editer le fichier : language/fr-FR/fr-FR.com_virtuemart.ini
Ajouter :
COM_VIRTUEMART_USER_FORM_PHONE="Entrez votre numéro de téléphone"
COM_VIRTUEMART_USER_FORM_TEST="Champ Test"
(mieux : utiliser l'outil de substitution dans extensions --> gestion des langues --> substitutions).
EDITER : components/com_virtuemart/views/askquestion/tmpl/form.php
Et ajouter ce qui est en rouge :
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_NAME') ?> : <input type="text" class="validate[required,minSize[4],maxSize[64]]" value="<?php echo $this->user->name ?>" name="name" id="name" size="30" validation="required name"/></label>
<br />
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_EMAIL') ?> : <input type="text" class="validate[required,custom[email]]" value="<?php echo $this->user->email ?>" name="email" id="email" size="30" validation="required email"/></label>
<br/>
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_PHONE') ?> : <input type="text" class="validate[required]" value="<?php echo $this->user->phone ?>" name="phone" id="phone" size="30" validation="required phone"/></label>
<br/>
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_TEST') ?> : <input type="text" class="validate" value="<?php echo $this->user->test?>" name="test" id="test" size="30" validation="test"/></label>
<br/>
NOTA : vous pouvez observer que les paramètres "class" et "validation" sont différents pour TEST, ce qui permet de le rendre facultatif...
EDITER : com_virtuemart/views/askquestion/tmpl/mail_html_question.php
et ajouter ce qui est en rouge :
<table class="html-email" cellspacing="0" cellpadding="0" border="0" width="100%"> <tr >
<th width="100%">
<?php echo JText::_('COM_VIRTUEMART_QUESTION_ABOUT').' '.$this->product->product_name ?>
</th>
</tr>
<tr>
<td valign="top" width="100%">
<?php
echo JText::sprintf('COM_VIRTUEMART_QUESTION_MAIL_FROM' , $this->user['name'], $this->user['email']) . "<br />";
echo $this->phone. "<br />";
echo $this->test. "<br />";echo $this->comment. "<br />";
?>
</td>
</tr>
</table>
EDITER com_virtuemart/views/askquestion/view.html.php in line 44
et ajouter ce qui est en rouge :
function renderMailLayout() {
$this->setLayout('mail_html_question');
$this->comment = JRequest::getString('comment');
$this->phone = JRequest::getString('phone'); $this->test= JRequest::getString('test');EDITER com_virtuemart/views/askquestion/tmpl/mail_raw_question.php
et ajouter ce qui est en rouge :
<?php
echo JText::sprintf('COM_VIRTUEMART_WELCOME_VENDOR', $this->vendor->vendor_store_name) . "\n" . "\n";
echo JText::_('COM_VIRTUEMART_QUESTION_ABOUT') . ' '. $this->product->product_name."\n" . "\n";
echo JText::sprintf('COM_VIRTUEMART_QUESTION_MAIL_FROM' , $this->user->name, $this->user->email) . "\n";
echo $this->phone. "\n";
echo $this->test. "\n";
echo $this->comment. "\n";
Voilà, ça marche sans problème (testé sour VM2.12b)
PS: Note sur le sujet d'origine : Il est important de vérifier quels fichier VM appelle lorsqu'il charge le formulaire. par défaut : \ html \ com_virtuemart
PS2 : Il est possible de faire un override dans le template, à l'exception du fichier com_virtuemart/views/askquestion/view.html.php (dommage).
Ouala, j'espère que ça vous servira!
L'exemple est pour le numéro de tel, mais il peut bien sûr marcher pour tout ce que vous voulez. J'ai ajouté le champ TEST, pour vous montrer. J'ai choisi de rentre le téléphone obligatoire et le champ TEST facultatif.
Editer le fichier : language/fr-FR/fr-FR.com_virtuemart.ini
Ajouter :
COM_VIRTUEMART_USER_FORM_PHONE="Entrez votre numéro de téléphone"
COM_VIRTUEMART_USER_FORM_TEST="Champ Test"
(mieux : utiliser l'outil de substitution dans extensions --> gestion des langues --> substitutions).
EDITER : components/com_virtuemart/views/askquestion/tmpl/form.php
Et ajouter ce qui est en rouge :
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_NAME') ?> : <input type="text" class="validate[required,minSize[4],maxSize[64]]" value="<?php echo $this->user->name ?>" name="name" id="name" size="30" validation="required name"/></label>
<br />
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_EMAIL') ?> : <input type="text" class="validate[required,custom[email]]" value="<?php echo $this->user->email ?>" name="email" id="email" size="30" validation="required email"/></label>
<br/>
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_PHONE') ?> : <input type="text" class="validate[required]" value="<?php echo $this->user->phone ?>" name="phone" id="phone" size="30" validation="required phone"/></label>
<br/>
<label><?php echo JText::_('COM_VIRTUEMART_USER_FORM_TEST') ?> : <input type="text" class="validate" value="<?php echo $this->user->test?>" name="test" id="test" size="30" validation="test"/></label>
<br/>
NOTA : vous pouvez observer que les paramètres "class" et "validation" sont différents pour TEST, ce qui permet de le rendre facultatif...
EDITER : com_virtuemart/views/askquestion/tmpl/mail_html_question.php
et ajouter ce qui est en rouge :
<table class="html-email" cellspacing="0" cellpadding="0" border="0" width="100%"> <tr >
<th width="100%">
<?php echo JText::_('COM_VIRTUEMART_QUESTION_ABOUT').' '.$this->product->product_name ?>
</th>
</tr>
<tr>
<td valign="top" width="100%">
<?php
echo JText::sprintf('COM_VIRTUEMART_QUESTION_MAIL_FROM' , $this->user['name'], $this->user['email']) . "<br />";
echo $this->phone. "<br />";
echo $this->test. "<br />";echo $this->comment. "<br />";
?>
</td>
</tr>
</table>
EDITER com_virtuemart/views/askquestion/view.html.php in line 44
et ajouter ce qui est en rouge :
function renderMailLayout() {
$this->setLayout('mail_html_question');
$this->comment = JRequest::getString('comment');
$this->phone = JRequest::getString('phone'); $this->test= JRequest::getString('test');EDITER com_virtuemart/views/askquestion/tmpl/mail_raw_question.php
et ajouter ce qui est en rouge :
<?php
echo JText::sprintf('COM_VIRTUEMART_WELCOME_VENDOR', $this->vendor->vendor_store_name) . "\n" . "\n";
echo JText::_('COM_VIRTUEMART_QUESTION_ABOUT') . ' '. $this->product->product_name."\n" . "\n";
echo JText::sprintf('COM_VIRTUEMART_QUESTION_MAIL_FROM' , $this->user->name, $this->user->email) . "\n";
echo $this->phone. "\n";
echo $this->test. "\n";
echo $this->comment. "\n";
Voilà, ça marche sans problème (testé sour VM2.12b)
PS: Note sur le sujet d'origine : Il est important de vérifier quels fichier VM appelle lorsqu'il charge le formulaire. par défaut : \ html \ com_virtuemart
PS2 : Il est possible de faire un override dans le template, à l'exception du fichier com_virtuemart/views/askquestion/view.html.php (dommage).
Ouala, j'espère que ça vous servira!