Tagged Questions
0
votes
0answers
11 views
Set Featured Image from Form in Front End
I am creating a front end creator/editor for some custom post types.
I wanted to have a button that opened WordPress' "Set Featured Image" modal (as is found when creating a post from the admin ...
2
votes
1answer
37 views
Frontend posting - everything saves other than checkboxes?
I have a form on the frontend of Wordpress which is saving all fields except a checkbox array. It displays and saves the correct values if I tick the boxes in the backend post editor, and the ticks ...
0
votes
1answer
29 views
Check in function on custom page
I have a website about places and attractions in my country. Each place/attraction is a different custom post. On this page, i would like to add a button with the value "Check In" and if clicked by a ...
-1
votes
1answer
111 views
Front end post form won't post categories to custom post type
Trying to get a front end post form to work with my custom post type. It posting to the post type but the 2 custom taxonomies and the tag field aren't posting/saving.
Here is my CPT.
...
0
votes
1answer
119 views
Post visibility option to theme front-end for author to select?
Is it possible to present author with an option to select visibility of a post (public, private, password) on theme front-end post adding without messing with Wordpress core?
Any suggestions are ...
1
vote
1answer
157 views
Crafting WP_Query array, sort by date
question about wordpress WP_Query:
'post_type' => 'event_date' outputs dd/mm/yy ex: 31122012
I would like to order my frontend 'event_date' output not by latest WP post entry
but by latest ...
1
vote
2answers
70 views
How to set a custom post type to not show up on the front end
I use a custom post type in one of my sites for image slideshows. I have publicly queryable set to false/off but when Google crawls my site I see 404 errors for the URLs for my slideshows. I thought ...
1
vote
1answer
790 views
Add custom post type items from frontend
I am trying to figure out on how do I make my wordpress website to be able to add portfolio items from the frontend. Plugins such as WP-User-Frontend allows posting from frontend but only works with ...
2
votes
1answer
501 views
Frontend editing, Frontend user dashboard
I am creating a website so that users can submit their articles from the front end. I have quite a few things set up:
The ability to submit custom post types from the front end
Blocked from the ...
0
votes
1answer
96 views
display custom portfolio tags
This is a part from the code that is used to display portfolio categories:
$post_cat = array();
$post_cat = wp_get_object_terms($post->ID, "portfolio_category");
...
0
votes
2answers
202 views
Plugin needed to allow subscribers to post articles on the front end without admin approval [closed]
Folks,
I'm working on a magazine that has two areas: a professional writer driven portion and a user submitted portion. We want the user submitted portion to be able to be formatted like the ...
-2
votes
1answer
221 views
Front end post or photo or both
I need a help in correcting my code that can front end post or attach image or post&attach image ;)
Now I can send a 'post' and 'post with photo' but can't send just a photo, How can I do that? ...
4
votes
4answers
1k views
Front end registration/login & publish/update 1 custom post
I want to be able to allow a user to register/login via a front end form and be able to create 1 custom post which only they will be able to edit and update via a front end form.
This will be part of ...
2
votes
2answers
173 views
Make custom post type display as a page
I am trying to make my custom post type display on the front end as if it were a page. Depending on the theme, it won't have the date, author, etc...
I've looked into creating a template such as ...
0
votes
2answers
994 views
WordPress Create Post from front-end
I'm having to design an e-commerce site where users should be able to create a product from front-end.
In WordPress, the product will simply be a post with custom fields like Price, Condition,.......
...
1
vote
1answer
589 views
Custom Post Type & Meta Box - Displaying meta box information on front end?
I've created a custom post type "projects" that has a meta box for additional information (client name, type of project, budget, etc). I'd like to be able to display this information on the front-end.
...
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
78 views
How to create Custom image post?
I want to create a custom post type in which a post is only an image, title and description.
I want to have a front-end option for users to enter such a post.
What plugins do i need to play with in ...
0
votes
1answer
402 views
Front-end Image Upload to Custom Meta Box
I'm currently using a custom post type with a custom meta box for two image uploads.
I'm trying to create a front-end post page where the user can upload their own images from their desktop. All of ...
0
votes
1answer
276 views
Custom Front-end Post submission Not working :( [closed]
I have two front-end post submission forms. One is for normal post submission and another one is for custom post type "work" submission. The normal post submission form works fine but the custom post ...
0
votes
3answers
362 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', ...
0
votes
2answers
3k views
Create and edit posts from front end
I've created a very nice custom post type using the fantastic ACF plugin, but now I need a way for users to submit posts from the front end. Plugins like Gravity forms and Front-end Editor are nice, ...
0
votes
2answers
507 views
Wordpress User Frontend Editing Custom Fields
I'm using the plugin Wordpress User Frontend and editing the title and content of a post is nice (I managed to change it so I can edit custom post types), but there's no support for editing custom ...
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 ...
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 ...
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?