Thanks a bunch, I looked at upgrading from V3 to V4 and it would seem I did not complete the upgrade completely. It was an easy fix after I removed the widget code in the JavaScript section at the bottom of the page!
For those wondering with the same issue, check to see if this is in your code:
Under Contact:
<div id="contact-form-result" data-notify-type="success" data-notify-msg="<i class=icon-ok-sign></i> Message Sent Successfully!"></div>
Change that to:
<div class="contact-form-result"></div>
Then remove the code below from <script type="text/javascript"> at the bottom of your page:
// Contact Form
$("#template-contactform").validate({
submitHandler: function(form) {
$('.form-process').fadeIn();
$(form).ajaxSubmit({
target: '#contact-form-result',
success: function() {
$('.form-process').fadeOut();
$(form).find('.sm-form-control').val('');
$('#contact-form-result').attr('data-notify-msg', $('#contact-form-result').html()).html('');
SEMICOLON.widget.notifications($('#contact-form-result'));
}
});
}
});
I hope this helps you all :)