Is it possible to edit an entrie's status outside the admin section? I want to be able to open and close entries from the front page.
A:
This isn't default EE behavior. Seems like you can do inline editing with a little work though.
Here is a detailed how-to on inline editing with EE and Ajax. http://www.3roadsmedia.com/use-a-modal-box-to-edit-content-inline-with-expressionengine/
MediaGirl
2009-07-27 20:27:16
+1
A:
you can do this, using the {exp:weblog:entry_form} tag and then for example using:
<select name="status">
<option value="open">Open</option>
<option value="closed">Closed</option>
</select>
just using the status name as value^^
MrThys
2009-09-17 14:40:11