adamcodefor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment Author Level or Rolenice work man.
Been looking to do this for the user_name and your idea worked a treat
Forum: Plugins
In reply to: [Plugin: Customize Your Community] Error on the profile page shows backendyeah I have been using theme-my-login for a week or so now and it is far better, no problems at all =D
Forum: Plugins
In reply to: [Plugin: Customize Your Community] Error on the profile page shows backenddo77 – i guess if you add some javascript to validate the matching passwords too that would work, but dont forget people can just disable javascript and get round it, it needs to be sever side really.
Forum: Plugins
In reply to: [Plugin: Customize Your Community] Error on the profile page shows backendits a shame to stop using the CYC plugin because it is great, but after a month of no word or solution to what is a pretty big problem, it looks like I will be using the theme-my-login as it is pretty similar and more frequently updated. Cheers for the link houseofstrauss
Forum: Plugins
In reply to: [Plugin: Customize Your Community] Error on the profile page shows backendIt’s a pretty big bug to be honest, the idea of the plugin is to block backend access this is a massive hole that lets users in…
Forum: Fixing WordPress
In reply to: Upload an image from the frontendReally I want to use the functions to check image type and extract the EXIF data from the image?
Forum: Plugins
In reply to: Add post categories via post form.Ok sorted the title, custom fields and categories. For the categories I know you where looking for checkboxes but a drop down is really simple. I included the following in my form:
<?php wp_dropdown_categories('hide_empty=0&title_li=&name=cat&hierarchical=1&exclude=1'); ?>
To show a drop down of categories. (If you want more than one, maybe just repeat the drop down?)
Then in my header (on form submit) I used the following:
$category = $_POST['cat'];
to get the category value from the drop down$category_array = array($category);
to store the category as an array$post_id = wp_insert_post( array( 'post_author' => $user_id, 'post_title' => $post_title, 'post_content' => $post_content, 'post_category' => $category_array, 'tags_input' => $tags, 'post_status' => 'publish' ) );
to push $category_array and co as a post.
Hope that helps. Still not cracked image attachments yet – so any help would be great. I’ll post back if I find anything.
Forum: Plugins
In reply to: Add post categories via post form.I am also trying to do this with no look. I am trying to add additional custom fields and images. How did you get the custom fields and title etc?
Forum: Everything else WordPress
In reply to: Add a new post from the front endOk I took a look at the Prologue theme which lets users submit posts from the front end using wp_insert_post. I am wondering how to add the option to add custom fields and photos this way??
Forum: Themes and Templates
In reply to: Prologue Categories and WYSIWYG EditorI would love to know how to do this also….
Forum: Everything else WordPress
In reply to: Add a new post from the front endI am sure I saw a plugin other than TDO Mini Forums that gave the ability to submit posts from a form in the front end but can’t find it anywhere, does anyone know what plugin that maybe??
Forum: Plugins
In reply to: [Plugin: TDO Mini Forms] SECURITY WARNING: Personal files deletedWondering if the same might happen when its uploaded to my web space. Is there any risk of it deleting files there aswell??
This really needs to be addressed
Forum: Fixing WordPress
In reply to: Stop search looking for pages. I only want post resultsAnyone got any ideas? I don’t remember previous versions of WP searching the pages as well as posts. Its not a new feature if you can’t disable it?!
Forum: Plugins
In reply to: Class “current_page_ancestor” not getting attached for post parenthmm still no help?
Forum: Plugins
In reply to: Class “current_page_ancestor” not getting attached for post parentHmm I have still had no look with this, I would of thought its something that all wordpress blogs with a homepage would want?! It works fine for other pages that have parents just not the post<blog…