Hi everybody, I have read that tutorial about "
Changing the Joomla message after a submission of a SEBLOD form" and decided to try it.
Si I did an "Afterstore" field where I wrote this code :
<?php
/**
* @editorPAO Production - www.paoproduction.com
* @license GNU General Public License version 2 or later; see _LICENSE.php
**/
defined( '_JEXEC' ) or die;
?>
<?php
$config['message'] = 'Merci '.$fields['fm_telech_brochure_prenom']->value.' '.$fields['fm_telech_brochure_nom']->value.' pour votre confiance,<br />';
$config['message'] .= 'Vous pouvez sdf '.$fields['fm_telech_brochure_nom']->value.;
$config['message_style'] = 'message';
?>
But the only think displayed is an error message :
" 0
syntax error, unexpected ';' "
I probably missed something in the tuto, but i can't find what. Any idea ?
Thanks in advance...