The forms tag has no wiki summary.
0
votes
1answer
41 views
Form Security: nonce vs. jQuery
I am trying to create a methodology for submitting forms on my WordPress site. In the past, I have used WordPress nonces in order to secure form submission, but I like the idea of using jQuery to ...
-1
votes
0answers
14 views
Styling Contact Form [closed]
I am trying to create a contact form similar to this one for my site
http://www.solarmarket.com.au/
I have tried to create it with Contact Form 7 but I can't style the Checkboxes to make them ...
0
votes
3answers
22 views
How to trigger $_GET request within admin plugin page?
I have this form in my plugin function:
<form method="get" action="" enctype="multipart/form-data">
<p class="submit">
<input type="hidden" name="do_it_hidden" value="run">
...
2
votes
3answers
41 views
Sending form data via PHPMailer - How to action PHP script from a form
Some easy points on offer...
I wish to action a PHP script from a WordPress page but where is the best place to store the script? The script works perfectly fine using a non-WordPress environment in ...
0
votes
0answers
16 views
Form fields based on custom fields
I need to create a contest forms where the fields are based on values in several custom fields. The form layout is to be somewhat static, except from the contest questions (labels) and the type of ...
0
votes
0answers
33 views
Calling Custom Taxonomy Dropdown in Form
I'm writing a plugin to allow users to submit fragments of lyrics to my site. I have the plugin working minus one aspect. When entering the lyrics I would like users to be able to select the artist ...
0
votes
1answer
26 views
Custom Form not generating URL
CReating a template to load content in an iframe on the same page - I have not even got as far as using ajax to avoid reloading the whole page as the form submit is not working. The submit button ...
0
votes
1answer
21 views
POST from jQuery to PHP
I have a form that passes field values to jQuery, which validates the fields and creates the variables being sent in data: {} in the snippet below.
$.ajax({
type: "POST",
url: "<?php ...
0
votes
0answers
20 views
Front end form submission/processing, without using a template file
I'm writing a plugin which has a front end form that is generated by a shortcode. I'm struggling with processing the form submission in any way. Many tutorials describe placing form processing code at ...
0
votes
1answer
22 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
42 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
30 views
Make editor required for post from frontend
I am trying to build a content submission form on the front end of my site, and I am using wp_editor to render visual text editors for my users, so they can make bold text and lists and stuff like ...
0
votes
2answers
22 views
prepopulate form from a hook within wordpress function.php file
I have a form that I created by simply using the HTML editor in the wp-admin backend for a page. I have some variables in a hook for that page, I would like to pre-populate some of the form fields ...
0
votes
0answers
16 views
Integrate plugins s2Member with MailChimp
i follow the tutorial at http://www.mysecondmillion.com/s2member-install-setup-mailchimp/
configured as what its said,
but still not get the s2Member subscriber added to mailchimp list.
I've set ...
-1
votes
0answers
17 views
Wordpress plugin downloadable content only for subscribers Question:69251 [closed]
Anyway,the issue below:
Downloadable content only for subscribers?
i found it useful as i need the further information of how to implement A Whitepaper download files in a site.
i wanna ask @javipas
...
1
vote
1answer
42 views
Creating a custom multilingual form
I need to create a special form for my website where users cand specify a series of data including some textfields, combo boxes and sliders (from 0 to 100). Also I need this form to be qTranslate ...
1
vote
1answer
58 views
WP Login forms action URLs displayed as pretty URLs in browser (ex with Restore Password)
I would like to use the WP native login/register/restore password/.. functionality, but display pretty URLs instead of wp-login.php
I've been looking at the core code and noticed that most login ...
0
votes
1answer
26 views
Why is this search form not submitting when button is clicked?
I've got a search form on my page, which works perfectly fine when I enter the text and press enter, however it doesn't submit anything when .submit-search button is clicked, why is that? note: ...
0
votes
1answer
34 views
Is it save to replace <input type=“submit” > with <button type=“submit”> in WordPress search form
I am asking because of a large userbase and possible conflicts with plugins.
I mean the 2013 theme for example targets the button with .searchform [type="submit"] even of it has the .searchsubmit ...
0
votes
1answer
40 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 ...
-1
votes
0answers
42 views
List custom post type URLs based on user form selection
I'd like to set up a form with dynamically populated radio buttons for all custom post types. Something like this:
custom post type 1
custom post type 2
custom post type 3
continued for all CTPs...
...
0
votes
0answers
47 views
User driven content problems
I am trying to build a website that will allow users to post from the front end. I need to be able to have the user enter a title, a category, and tags. For the content of the post, I would ideally ...
0
votes
0answers
26 views
Save / Output Wordpress Form
I have a custom html calculating form in WordPress. I would like to know whether I can create a button, which first prints /saves the form to PDF, and then email's it to the relevant staff (and also ...
0
votes
1answer
38 views
Placeholders in Jetpack Contact Form
In HTML5 you can use placeholders in your forms to name fields or guide the users. I would like to use this in Jetpack forms but it seems it doesn't support it. You can add a default value like ...
2
votes
1answer
68 views
How to stop form resubmission on page refresh
Hi I have a form that adds attachments to a post, however when the form posts it obviously doesn't show the post with the new attachment echoing "your file has been uploaded". When the user refreshes ...
0
votes
0answers
28 views
Submit form values to external URL shown displayed an iframe [migrated]
I am trying to make a form that on submit passes values to a external URL and show the results as an iframe. The form is the home page and the results must be shown in the first page as well.
Everery ...
0
votes
1answer
30 views
Capturing POST data
I am trying to modify the Member Status Plugin so that the status are based on the data saved on a custom database table.
Basically I wanted to change the administration menu with a form that can ...
0
votes
0answers
39 views
Recording geolocation data from user submitted form
I'm building the following plugin to allow users to submit posts with images via a form. It also generates geolocation information, which I want to store and use with the Geo Mashup plugin.
However, ...
0
votes
1answer
40 views
Multi-part form and wp_redirect()
For starters, it's a plugin (with a shortcode) or at least I would prefer it to be.
I've got two issues both related to wp_direct.
If form 1 validates I want to redirect to form 2, and continue the ...
0
votes
0answers
30 views
Correct process for updating custom field and sending email on form submit [closed]
I've built a client admin area where I want clients to be able to accept or decline contracts. If they click the accept button it updates a custom field to say it's been accepted, but I can't work out ...
0
votes
0answers
35 views
Pass data from one page to anothe file/page in wordpress
I have my custome theme in wordpress.This is the path of my custome theme.
C:\wamp\www\wordpress2\wp-content\themes\sscy1002\sscy1002
I have created a Page in wordpress which contains some form ...
0
votes
0answers
134 views
Custom Front End Register Form Auto Login and Redirect
I have a custom front end registration form that I am using and everything is working fine except I have been trying to get it to automatically log the user in and redirect them to a specific page. I ...
0
votes
0answers
16 views
Private feedback on users
I am trying to find a way for users to write private/anonymous feedback on each other (similar to ebay or amazon but private, and so that users can view feedback on them and feedback they have sent).
...
0
votes
0answers
144 views
Redirect user to a custom url after submitting a custom form using wp-comments-post.php
I am trying to make it so that a user is redirected to a confirmation page upon submission of a review... not a comment.
This is the form I'm using:
<form id="add-review-form" action="<?php ...
0
votes
0answers
22 views
Registration and Newsletter opt-in
I am trying to create a registration form that allows opting in for a newsletter as well. I created my own registration form using the code found here: Custom Registration Template/Page
I have tried ...
0
votes
0answers
18 views
RETURN_RESULT Website Search form
I'm not a Programmer and can really use some help. I'm building a real estate search form that will search my database and display pages. I have created posts and taxonomies and set the form on ...
3
votes
2answers
134 views
Custom Registration Template/Page
Is there a way to display the WordPress register form on a custom page the way one would use <?php get_search_form( $echo ); ?> for a search form? If not how would one go about creating such a ...
0
votes
1answer
38 views
Check spam in custom form - akismet
I have a plugin that has input form, I have decided to check submitted data with akismet. I do have API key, WP comments are filtered correctly...
here is, what I found: ...
0
votes
2answers
103 views
Headers already sent on a frontend post form using wp_redirect before get_header
I've gone through the various issues with headers already sent, checking for white space and making sure that the get_header line appears after the wp_redirect but I'm stuck.
The code is:
<?php ...
0
votes
0answers
31 views
Updating user_meta from pop-up form in back-end
I have created a custom wordpress backend area, which lists out all members on my wordpress site. Currently, there is a point system involved for loyalty rewards, which is maintained in this back-end ...
0
votes
1answer
215 views
Display multi-select box choices in a bullet list
I have a form that includes a multi-select box.
<form method="POST" action="">
<select name="countries[]" size="5" multiple="true">
<option ...
0
votes
0answers
35 views
Plugin Edit file/table data?
Hello WordPress people,
At the moment I'm building a plugin.
Via a form people can add some data that will be inserted in a database table.
At the same page I'm reading that table the display al the ...
0
votes
0answers
36 views
Redirect with message
For a plugin I'm currently developing, I have a custom form. The user can fill in the form and submit.
The way I want the form submission to work is:
Submit form -> validate data ---> success? ...
0
votes
0answers
26 views
Double input field in search form
I think I have the same problem CLICK
But the thing is that my search.php file looks totally different: PASTEBIN
So I don't have a code line like:
$search_query[$query_split[0]] = ...
-1
votes
1answer
63 views
autofill formidable forms fields using php code [closed]
Wanted to autofill some fields of formidable forms.
can i use php code or script?
0
votes
1answer
59 views
Is there a way to embed a Google Docs form in a page without using plugins?
I'm currently running a Wordpress blog. It's part of a school blog, so unfortunately, I don't have the permissions to install any plugins. I've got a "contact form" set up as a Google Docs form. Right ...
0
votes
0answers
24 views
Get only form elements in Contact Form 7
I want to get only the form elements of a form when applying do_action() for a contact form. My plan is to include only the input fields from other form in a main contact form.
For example:
I have a ...
0
votes
2answers
30 views
Create a new page for each form selection
I have a got custom page template which displays a drop down box that has list of countries.A user selects the box and clicks sumbit.Page then then displays the relevant details for that country .IT ...
0
votes
0answers
26 views
Custom forms, using $_SERVER[“REQUEST_URI”]
I have created a custom form on my WordPress site, however, after hitting submit, it redirects to a 404 page, even though the URL does in fact exist.
Here's the action part,
<form ...
0
votes
1answer
126 views
How do a put a form with php code into a variable or shortcode?
I'm trying to put my frontend form into a variable or a shortcode so I can wrap another shortcode around it (specifically Bainternet Post Creation Limits).
My form has PHP code in it so I'm not ...




