E-mail succes message not working

  • Posted by Ton van der Helm (67) Offline
Hello,

on the page www.epskamp.nl/hello-kitty-halfhoogslaper I'm using the contactform extension. When I succesfully send a mail there is no "Thank you" message. Can I enable this somewhere?
Thanks!
9 years 9 months ago #1 by Ton van der Helm

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5310) Offline
Hi mol4,
Strange. The 'Thank you' message should be displayed on your joomla system message section (something like this : www.dropbox.com/s/de9y4t376msjrgy/4y49z.jpg?dl=0 ).

Anyway, there's another workaround. Please open the file root/modules/mod_contactmap/tmpl/default.php
Around lines 200 you will see this code :
<?php if ($errormsg != '') {
        echo "<div class='box_alert'><div class='alert alert-error'>".$errormsg."</div></div>";
        //$app->enqueueMessage($errormsg, 'error');
    }?>

try to change it to :
<?php if ($errormsg != '') {
        echo "<div class='box_alert'><div class='alert alert-error'>".$errormsg."</div></div>";
        //$app->enqueueMessage($errormsg, 'error');
    } else {
        echo "<div class='box_alert'><div class='alert'>".$sendingmsg."</div></div>";
        }?>
9 years 9 months ago #2 by TemplatePlazza

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum