koolsol
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Front end user registration, login, profile, postinguser can login register and update profile at front end by using this plugin
http://wordpress.org/extend/plugins/profile-builder/
hope this will help
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Redirect to a page after form succesfulif you want to redirect to success page you urs than you have to edit scripts.js file add the line below 1 == data.mailSent
like :
if (1 == data.mailSent) {
jQuery(data.into).find(‘form’).resetForm().clearForm();
wpcf7ResponseOutput.addClass(‘wpcf7-mail-sent-ok’);
location.href=”http://www.yourdomain.com/yourthankyoupage”;Forum: Plugins
In reply to: [Plugin: Contact Form 7] Redirect to a page after form succesfuli sorted this by adding the below function in footer.php file
wp_footer();
Note wp_footer(); function should be in php tag like:
<?php wp_footer();?>
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Submitting without js goes to 404i sorted this by adding the below function in footer.php file
wp_footer();
Note wp_footer(); function should be in php tag like:
<?php wp_footer();?>
Forum: Plugins
In reply to: [Plugin: Contact Form 7] 404 Errori sorted this by adding the below function in footer.php file
wp_footer();
Note wp_footer(); function should be in php tag like:
<?php wp_footer();?>
Forum: Plugins
In reply to: [Plugin: Spam-Free Contact Form] Takes over entire pageyou are absolutely right because i also noticed that.
there is also one more problem in this plugin which i would like to share with you guys that is every time email goes in span / junk folder.
i sorter this problem my editing contact-form.php file.
just add “From: “. in from variable
complete code
$from = “From: “.$_POST[sfcfname].”<“.$_POST[sfcfemail].”>”;