Contact Form Feedback

Responsive, suitable for any type of business, built for any needs elegant one-page Joomla template.
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Sep 24, 2013 9:51 am
Reply with quote
Report this post
Hello! I still have a problem with my contact form's feedback.

When I send the contact message I am re-directed to the home page where the slideshow appears. As a result I have to scroll down to see the confirmation message. But if I don't scroll within 2-3 seconds the confirmation message disappears so I don't know if the contact message was sent.

If it was visible until I changed page it wouldn't be a problem for me. Can I change this?

P.S: I have also tried http://extensions.joomla.org/extensions ... otes/23093 but it doesn't work with the contact form!
User avatar
Expert Boarder

GK User
Thu Sep 26, 2013 10:36 am
Reply with quote
Report this post
But if I don't scroll within 2-3 seconds the confirmation message disappears so I don't know if the contact message was sent.


Please go to template/js/gk.script.js and find this code :

Code: Select all
if(jQuery('#system-message-container').length != 0){
        jQuery('#system-message-container').each(function(i, element){
              (function() {
                   jQuery(element).fadeOut('slow');
              }).delay(3500);
         });
   }


and then remove it to avoid confirmation bar disappearing.
User avatar
Platinum Boarder

GK User
Thu Sep 26, 2013 10:44 am
Reply with quote
Report this post
that worked fine! Tnx! Is it easy to put an "x" button so that the user closes the confirmation message?
User avatar
Expert Boarder

GK User
Fri Sep 27, 2013 12:07 pm
Reply with quote
Report this post
By default template is designed to auto hide block area. You can modify time in this script to for example 10 seconds.

Code: Select all
delay(3500);


to

Code: Select all
delay(10000);
User avatar
Platinum Boarder

GK User
Fri Sep 27, 2013 12:37 pm
Reply with quote
Report this post
OK tnx, this is what I finally did.
User avatar
Expert Boarder


cron