The part of a site that visitors see and is controlled by the currently active theme.
3
votes
2answers
3k views
Front-End Post Submission
I am trying to add a form where users can submit post from front-end.
I am Following this tutorial:
http:// wpshout.com/wordpress-submit-posts-from-frontend/
What I am doing is adding this code to ...
9
votes
7answers
11k 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 ...
6
votes
3answers
11k views
Submit post and upload image from front-end
I am trying to do something similar to the above question. I am trying to make users post and upload images from front-end. I have already done the post form and its working.
I just followed and ...
16
votes
1answer
19k 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
4
votes
1answer
1k views
How to show 'login error' and 'lost password' on my template page?
I'm providing front-end login in a template, using the function wp_login_form. It handles the redirection after login and logout pretty neatly! But if the username / password mismatch, or are non ...
8
votes
2answers
6k views
How to save the state of a drag and drop jQuery UI Sortables front end layout editor?
I am building a front end post layout editor using jQuery UI Sortable.
The posts are laid out in 300px by 250px boxes over a background image. The posts are created and edited using the WordPress ...
4
votes
1answer
4k views
Upload post thumbnail from the front end
We would like users to be able to upload the post thumbnail when editing posts. How would this be done. I would imagine it would make use of the ajax functions of wordpress.
Any ideas,
Marvellous
1
vote
1answer
322 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 ...
3
votes
2answers
280 views
Localization: I want the backend: english and frontend in defined language
I'd like to have the backend of Wordpress in English and use a different locale for the frontend
so far I figure out perhaps I could do it by setting in the wpconfig the locale I want to use in the ...
0
votes
2answers
370 views
Not redirecting upon front-end post submission
I have been trying this code to submit front-end post:
http://pastebin.com/B8LGhsGA
It is not redirecting upon clicking the submit button the form works fine but its not redirecting. When the post is ...
0
votes
2answers
1k views
Save Theme Options (options.php) From The Frontend
I try to save an option from the frontend but i can't find yet how to do it.
So, the idea is to give the blog owner a simple form with a dropdown that can select a different stylesheet.css.
I have ...
2
votes
2answers
1k views
How can I edit a post from the frontend?
I have learned how to create a post from the frontend but how about editing it ?
This is the code I am trying to create a simple frontend form for posting.
Thank you
3
votes
3answers
2k views
Meta Boxes in Front End Post Submission Form
How can I add meta boxes to the front end post submission form? Similar to front end post submission that creates new posts, the form replies should go directly into the post meta boxes.
Meta Boxes ...
5
votes
3answers
348 views
How to add “Stick this post to the front page” to front end?
I have a baseball related website with multiple authors. I use the "Stick this post to the front page" to denote an "Editor's Pick" on an article. I would like to add a link/button to allow editor to ...
3
votes
4answers
3k views
Frontend Simple Local Avatar upload
I'm using Simple Local Avatars for uploading custom user avatars.
How can I create a frontend page with the avatar upload function?
Below please find the code from Simple Local Avatars plugin:
...
1
vote
2answers
2k views
How to add media from front-end to an existing post?
Golden Apples Design created (as far as I know) the media upload function that many people on WP.A and elsewhere seem to recommend. But all of the Q&As I can find on StackExchange deal with ...
3
votes
2answers
510 views
How do I create a way for users to assign categories to a post from the frontend?
Basic idea is for any post on the site, I'd like users to be able to assign a category for it by selecting from a set of checkboxes on the frontend. This would be a kind of crowd-sourced ...
2
votes
2answers
510 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 ...
0
votes
1answer
1k views
Front end post editing using a form
I have a custom-post type with the standard meta boxes and some custom fields. How could I edit a post through a form in the frontend?
3
votes
1answer
2k views
List custom post types in dropdown
I have three custom post types, each with around 5 taxonomies and 2 of the custom post types share two taxonomies.
I've just about got everything set up for posting from the front end other than the ...
2
votes
1answer
730 views
Publish pending article from front end with a button?
Is it possible to take the blue publish button in back end of the wordpress and place it in the frontend near the post in my index.php. I need a way to publish the pending article without going to ...
1
vote
1answer
793 views
front end post with multiple upload images?
I am using front end post with upload image,
my code
if (!function_exists('wp_generate_attachment_metadata')){
require_once(ABSPATH . "wp-admin" . '/includes/image.php');
...
1
vote
2answers
2k views
Frontend Post Form Validation
OK, there have been several posts on here about frontend posting forms. I've read them all, which got me to where I am. Now every form I come across has some form of validation which seems to check ...
0
votes
1answer
849 views
Creating a multi-file upload form on the front end for attachments
I am trying to create a public form where users can upload multiple images to be attached to a particular post. I am able to get it to work with single images thanks to this post at Golden Apples ...
0
votes
2answers
644 views
Post from front-end only by logged in users, form posts as “posted by: <logged-in user's username>”
I've handrolled a form for posting from the front-end, with some custom functions that I needed. However, I've made the form only accessible when a user is logged in, and I'd like to have the articles ...
4
votes
3answers
272 views
Handling jQuery Component Collision
In plugin development, what is the best practice to prevent jQuery component collision on the front end?
For instance, let's say I include the jQuery Apprise dialog in a plugin that loads this on the ...
1
vote
1answer
620 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.
...
1
vote
0answers
254 views
How to use nonce with front end submission form?
Thanks to a variety of posts on here I've managed to put together a front end submission form. After about 24 hours of tweaking I've finally got everything working including a redirect to a 'success' ...
1
vote
1answer
599 views
Modify front-end delete button to publish pending posts
I've found this helpful snippet to make a delete post link on the front-end:
<?php if (current_user_can('edit_post', $post->ID))
echo "<a href='" . ...
1
vote
1answer
229 views
Post & edit a post from front end along with upload, dropdown, and other inputs
I am following this tutorial to post from front end. I am able to post the title, content, category, tags, I would like to know is it possible to add more fields like in the image below. How to ...
0
votes
2answers
71 views
Up/Down voting system for Wordpress
Looking in all posts with keywords "voting system, upvote, downvote", I can't find a satisfying solution for this issue, except accepting one of the available plugins, spend a lot of time undersanding ...
0
votes
2answers
366 views
Get an image from url in front end submission form
I am building a user generated content sharing theme
so how can i allow visitors to upload an image from a url
i mean to say that they enter the url and the image gets automatically attached
this is ...
0
votes
1answer
323 views
Front-end update_post_meta with ajax
as written in title I'm trying to update a post_meta using Ajax.
Actually I'm a complete newbie to Ajax and how it works so, if it is possible, I would appreciate if someone could 'take me by hand' ...
0
votes
3answers
361 views
Trying to save custom post type from frontend partially working
I've created the following custom post type (lugares means places) with a custom taxonomy of tacos and it works fine form the backend:
/**
* Custom post-type lugares
**/
add_action('init', ...
2
votes
2answers
312 views
How to correctly load wordpress in a non WP script for AJAX request
I want a script in my theme, ajax.php, which I want to load or access from other frontend pages using ajax.
In ajax.php I want access to core WP functions such as get_posts(), do_shortcode() etc. ...
0
votes
1answer
223 views
front end radio custom taxonomy with custom post type
Hi my good friends I need your help better than losing my mind, first I have to thank "Stephen Harris" for his good article ,
-second: After a lot of searching I still don't know how to inject a ...
0
votes
1answer
353 views
Advice on setting up a site with front end registration
I have been tasked with creating a site for a large audience, and many of the audience will require some sort of sign up. They may require certain account controls (visual things, like theme colours ...