The part of a site that visitors see and is controlled by the currently active theme.

learn more… | top users | synonyms (1)

0
votes
1answer
54 views

Widget Development - Displaying dropdown content

I'm using the following code to create a widget to select a post from a dropdown - which works fine in the backend, but I can't figure out how to display this on the frontend... <?php class ...
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 ...
0
votes
1answer
28 views

Change Post Status From Front End

I am using the code in a page below to let users delete their posts from the front in. I have wp-admin totally blocked off to site users. What i want to do is when they click the delete button the ...
0
votes
0answers
39 views

Saving term using “suggest” script and “ajax-tag-search” action

I am building a front-end post edit / create form. The form uses an auto suggest for taxonomy, powered by built in suggest script & the ajax-tag-search action. The script is working fine, but I am ...
0
votes
0answers
12 views

Let users create a new custom taxonomy entry from frontend

I had created a custom taxonomy "group", and new post type named "topic". there are some terms under custom taxonomy "group". Use the following code, i can create a new entry from frontend in ...
0
votes
0answers
12 views

front end category change

Hey I'm looking for a simple way to change the category of a post from the front end. How could this be possible? (I really don't want to use have front end editor plugins, and I want to use a short ...
0
votes
0answers
93 views

Moving WP E-commerce “Add Product” to Front End

I'm moving my wp e-commerce dashboard to frontend. Currently I'm on stage where everything works perfect and I have last part to implement, but the last is the hardest as it's too specific for WP ...
0
votes
1answer
41 views

Upload unnattached image from frontend

I am using the below function to let users upload files from the front end. It works great except that I would like the file to NOT be attached to any post. Currently, the file is automatically ...
0
votes
1answer
60 views

Link or button to open the media manager from frontend

I am trying to figure out if there is a way to add a link or button that will open the media manager/library on the front end of the site? I don't need to select images for insert or to select images ...
0
votes
2answers
39 views

updating meta_key from the frontend

I am wanting to update the meta_key in the database to reorder postmeta from the frontend. I'm using jQuery UI drag and drop to move items into an order, I can update the values but the meta_key is ...
0
votes
0answers
38 views

Update 1 specific field wrapped in shortcodes on frontend?

I am working on a page template where users can update their profile fields on the front end. I am using profile builder pro and it works fine however I am trying to recreate a specific field so I can ...
0
votes
2answers
101 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
108 views

Front-end media upload doesn't work properly

When i try to upload media from front end i get error An error occurred in the upload. Please try again later. When i refresh a page i see uploaded media. I noticed that when i remove header ...
0
votes
2answers
58 views

Front end login form not working on live site

I am using the front end form submission. It work on localhost perfectly but when i live my site it not working it show the success message but originally it not logged in. This is my code <?php ...
0
votes
0answers
14 views

need “see my store” link from mainsite to member site all on frontend on multisite

I'm using a multisite network with TTfrontendmarketpress. Users do not have access to the backend dashboard. I have custom meta widget installed that allows users from their subsite to get to the main ...
0
votes
1answer
67 views

How to add a full edit link to front-end editor?

I would like to add a full edit button to the Front-end Editor plugin. It's currently like this: [EDIT] Text text text I would like to make it like: [EDIT] Text text text (enables front-end ...
0
votes
0answers
54 views

Woo commerece Theme conflict(css issue) with frontend submission form of Events Manager plugin [closed]

I want to use woocommerce theme with events manager plugin but when the page is loading it will display those fields but collapses them when it finishes loading the page. I get this ...
0
votes
1answer
44 views

ajax page template

I am creating a wp theme that gets all its data via ajax (using ajax-admin.php). Now, I've set a div that would have the html of the page there (in the index.php file). My index.php is a simple one, ...
0
votes
1answer
107 views

Front-End Editor email notification issue

I'm trying to send a notification email when a user updates a page/post, either in the backend or by using the Front-End Editor. It works fine when updating in the backend but no data is emailed ...
0
votes
1answer
52 views

Function is Missing an Action Hook

I have tied an action into a status change, which works on the backend. However,using a frontend button for updating post status does not trigger the ...
0
votes
1answer
59 views

Problems with Custom front end [closed]

I have several questions on wordpress . I want to create a blog , where people can register from frontend , write and edit their post from frontend . If there is a plugin that is well , if there is ...
0
votes
0answers
67 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
2answers
213 views

Front-end registration form with password field

I'm trying to create a front-end registration form for my Wordpress website. The registration form is in the header, so any plugins I've seen don't work as they use shortcodes. Look at my website for ...
0
votes
1answer
64 views

Front-end login problem: requires re-authorization when accessing dashboard

I have created front-end login form that allows users to login from front-end. However, when trying to access Admin section (dashboard), WP's default login form is displayed and user authorization is ...
0
votes
2answers
213 views

wp_logout logging everyone out instead of just the user that clicked the logout link!

I want to display a different menu depending whether a user is logged into the CMS or not. I'm using this for my menu: <?php if ( is_user_logged_in() ) { $args = array( 'depth' => ...
0
votes
1answer
95 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
0answers
155 views

Front end image upload with custom taxonomy [closed]

I Try to upload and image and assign a taxonomy. The problem is, the term is not saved. This is the code if(isset($_POST['new_post']) == '1') { $post_title = $_POST['post_title']; $post_category ...
0
votes
1answer
166 views

Redirect back to origin page after using get_delete_post_link()

I need to implement frontend and backend redirection after delete specific post using get_delete_post_link(). Which hook i can use? Any advice would be appreciated. Something similar to : <?php ...
0
votes
1answer
104 views

Get a submitted value from front end post form for single template

I'm using Wordpress Form Manager to allow users to post from the front end and I need to place values for the post in different spots in a single post template. The code they offered doesn't return ...
0
votes
1answer
759 views

Cant get front end form to post to wordpress

Long time lurker, first time poster, and big time PHP noob. Apologies if my question is a little vague, but i have the code below and I know im doing some sort of schoolboy error but it just wont ...
0
votes
1answer
836 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
1answer
273 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
2answers
504 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 ...
0
votes
1answer
543 views

How to update post's featured image in front-end

I created a new template page with code to allow front-end posting. Everything works great, with tags, post meta and image uploading (as featured image). I have seen many codes about front-end post ...
0
votes
3answers
1k views

Create post from form with image

I found this wonderdul script that @Bainternet here at Wordpress Answers created, that makes it possible to attach images into posts from a html form.. I tried to combine in into my "html form to ...
0
votes
2answers
3k views

custom registration form [duplicate]

Possible Duplicate: Front-end Register Form i like to create custom register form like http://www.bharatmatrimony.com/ this page in worpress ... i have searched many plugins no one helps ...
0
votes
2answers
286 views

Stop Authors from submitting spam post

I am designing a frontend for users, where they can submit an article/post from. But i am worrying if someone puts javascipt code, or SQL injection, or other malicious code. Is there a plugin or some ...
0
votes
2answers
131 views

AJAX requests within templates

I'm trying to come to an accurate decision here about safe ajax requests from a template. The thing about AJAX that always scares me is that the called script location is public: ...
-1
votes
1answer
450 views

plugin: 'init' hook, check if we're not in admin

I've tried this inside of my plugin ('init' hook) but it doesn't work: if(is_front_page() || is_singular() || is_archive()) { ... } How could I check it using init hook? Thanks.
-1
votes
1answer
29 views

How can i hide content if not friend in Buddypress?

How can I hide some specific contents or div or other stuff depending on being friend or not in buddypress ?? I tried to use the bp_is_user_friends() function but it did not work !
-1
votes
0answers
6 views

Upload Images from front-end and that image will be used as local avatar in wordpress,suggest any plugin [closed]

How to upload image from front-end, the uploaded image used as avatar, suggest any plugin,plz
-1
votes
1answer
104 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. ...
-1
votes
1answer
563 views

Front end add custom field to existing post [closed]

I know how to create a front end new post form through tutorials but I'm confused as to how to make a front end custom field that allows user to add data to existing posts
-2
votes
1answer
219 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? ...
-2
votes
2answers
193 views

get backend to front end

im trying to mashup this german have gotten it to work with tinymce im trying ti mash it up with this get posting from to the front end would be glad if someone has done similar things or guide me ...
-2
votes
1answer
232 views

How to allow registered users to add content from the frontend of the site? [closed]

I am building a membership website and I want registered users to be able to publish content from the front end, so it appears that they never leave the site, maintaining the design and layout, ...
-2
votes
2answers
78 views

Is there a secure way for the public to submit images, videos, and documents using WordPress?

I want the public to submit images, photo simulations, models, video, animation, illustrated narration, papers and other publications and multimedia. images - 30" x 42" 300 dpi . pdf format file size. ...

1 2 3 4