Tagged Questions
1
vote
1answer
41 views
Front-End Interfaces Without Shortcodes
So, I consider myself a "advanced novice" at WordPress development but I still do not have the concept of pages and templates fully understood. I'm having an issue with a feature I'm attempting to ...
0
votes
1answer
29 views
Using AJAX with Forms
I am attempting to validate and submit a form using AJAX in WordPress, however, the response that I am getting is 0. According to the codex, this would seem to indicate that admin-ajax is unable to ...
0
votes
0answers
38 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
0answers
55 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
2answers
124 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 ...
2
votes
2answers
88 views
Built-in data validation function for URLs
I have a front-end form where people can submit their website URL.
I'm actually verifying URLs in Wordpress with a PHP function and I would like to know if there is a built-in function that allows me ...
1
vote
0answers
56 views
Adding a new user from the front end
I have a front end form that creates a new post from users that are not required to login. However, I need to create a new user based on the information passed in the form. As it is right now I can ...
1
vote
1answer
377 views
Get user input from a form
I am trying to create a form that will allow users to update their information on the front end. I am just starting to learn PHP (I know C# very well). If I use this code to create a form on a ...
1
vote
1answer
722 views
Set Featured Image Front Frontend Form
I have been struggling for days to figure this one out. I have successfully implemented a form to submit posts from the front end of my site. ButI can't figure out how to make the image uploads work.
...
0
votes
0answers
72 views
WordPress - front-end form to admin verification before publishing [closed]
Are you aware of existence plugin with following functionality:
visitor fill the form on front-end
from saved and to be verified by admin (to publish or not)
if allowed to publish, new post is ...
0
votes
1answer
307 views
Problem uploading different files as custom fields with front end post form
I have a front end post form that I'm having some problems getting the right path for the media to save as custom fields. The path to the file gets saved as ...
3
votes
1answer
121 views
Saving two categories from two dropdowns in front end posting form
So, here's the deal:
I have two category dropdowns, the first for the parent categories and the second for the child categories. They form a chain so that when you select the parent category the ...
0
votes
2answers
947 views
Saving frontend form data in wordpress
I have front-end user form like,
Title
Image Upload
Drop Down Category
Description
Tag
Now when a user fills the form and hits the publish button from the front-end..... at the back-end a post is ...
0
votes
1answer
530 views
Uploading PDF files from the front-end
I am working on a Wordpress site that has a custom front-end form for submitting posts. I need to add a field in the form to allow users upload a single PDF file along with the post. How can I achieve ...
2
votes
2answers
529 views
Autocomplete for taxonomy input boxes on a front end form
I have created a simple frontend form to allow users to submit posts - similar to the tutorial here - http://voodoopress.com/ . I also have a couple of custom taxonomies which i have as text input ...
1
vote
3answers
607 views
Redirection not working in this front end post submission form?
I found this tutorial to create a front end post submission form:
It doesn't matter what I type on wp_redirect( 'http://www.google.com' );
I don't get redirected to anywhere. Just the same page but ...
1
vote
3answers
1k views
Custom form, shortcode, and submit handler
I have a frontend form with a bunch of input. My requirements force me to use a custom shortcode to create the form. I have already tested a page with that shortcode.
Here's my :
<form ...
17
votes
1answer
20k views
How to edit a user profile on the front end?
How can I edit a user profile in the front end with a form?
first name, last name, username, email address and password
9
votes
7answers
12k views
Front-end Register Form
I'm looking for an easy way to place the user registration form on the front-end of a WordPress site. I've already used wp_login_form() to place the login form on the front end, but now I need to do ...