Tagged Questions
0
votes
1answer
51 views
jQuery Validate wp_editor
I have a form, and in the form, I use
<?php wp_editor('', 'user_submitted_progress', $settings = array('textarea_name' => 'user_submitted_progress')); ?>
to generate a TinyMCE, rather than ...
0
votes
1answer
53 views
WordpressUser Submission Form
I have a User Post Submission form, and it has three issues, as well as one potential issue.
Here is the code that processes the form.
<?php if(isset($_POST['user_submission_form'])) {
...
0
votes
1answer
50 views
Contact form 7 Plugin
http://www.tahititravel.com.au/site/thepage/
Here I have a form. I am using Contact Form 7 Plugin.
I have modified the CSS to suit my Design.
But When the form validates my design is ruined
How ...
0
votes
1answer
472 views
Remember form field values with page navigation
I have a form on a page template that controls which posts show up on the page and how those posts are ordered. You can see what I mean here: http://www.theseattlevine.com/the-vine
The questions I ...
1
vote
0answers
34 views
Showing errors from processing function on form
I use a function from my functions.php to process a front end post form. I store the errors in the variable $output but need a way to show it on the post form after submit. How can I do that?
0
votes
1answer
219 views
Front end post form validation
I have a front end post from that works fine except for the validation that I need done before it's processed. Ultimately I'd like to be able to do this with ajax because I have to do some things like ...
0
votes
1answer
216 views
Form validation on user profile edit
I have added a custom field to user profiles in bbPress however I am unsure how to do form validation other than javascript. I would like to do some PHP validation however the few things I have tried ...
1
vote
1answer
604 views
Multiple options pages validation for a plugin
I am writing a plugin and I decided to have multiple pages for different options of the plugin (for clarity's sake). Doing a single option was a piece of cake, but I'm encountering difficulties when ...
0
votes
1answer
60 views
Where this validating message come from?
I wrote a simple form, including text field, textarea, select and some validating by WP_error. When I try to submit the form without filling text field or textarea, I got a popup tip pointing the ...
1
vote
1answer
382 views
How can i add validation to this login form with out it redirecting to the wp-login.php page
Im using the code as posted on the website below, to create a hard coded login form.
http://www.wprecipes.com/add-a-login-form-on-your-wordpress-theme
What would be the best way of incorperating some ...
0
votes
1answer
338 views
Display all WP Errors together during form validation
I have a custom front end page where users can post from. All works fine but the i want if more than one field is empty then the errors for all empty fields should show all together. Right now the ...