• Hi,

    I’ve read the Wiki page of Scribu concerning is Front-End Edit plugin and how to add a new post from the front-end.

    The problem is that I can edit the title and the description but I can’t save the post (on the backend). I’m sure there’s an easy way to do this but I can’t seem to find the solution. Do I need to had a button or something?

    Thanks for your help!

    http://wordpress.org/extend/plugins/front-end-editor/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author scribu

    (@scribu)

    I’m not sure I follow.

    1. You create a post from the front-end using FEE and save it.
    2. You go to wp-admin to try editing that post further and then… what exactly happens when you press Save?

    Thread Starter Louis-Philippe Dea

    (@louis_dea)

    Hi Scribu,

    I create a post from the front-end using FEE and when I save it (I see the loading and it really seems to save on the front-end) but when I go back to wp-admin, the post doesn’t appear in the post area.

    Plugin Author scribu

    (@scribu)

    Please share your template code in a http://pastebin.com

    It would also be useful to see what the AJAX request looks like: http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers

    Thread Starter Louis-Philippe Dea

    (@louis_dea)

    I’ve just notice something in my Database, when I post from the front-end, I see the article in the posts tab but at the “post_date_gmt”, it shows : 0000-00-00 00:00:00 instead of 2012-04-11 18:26:16. Also, there’s nothing in “post_name”.

    Here’ the code of my page :

    <div class="fee-group">
    	<div class="fee-edit-button">Cliquez ici pour d&eacute;buter la r&eacute;daction de votre article</div>
    	<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
    		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    			<?php the_title('<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute('echo=0') . '" rel="bookmark">', '</a></h2>'); ?>
    			<div class="entry-content">
    				<?php the_content(__('Continue reading', 'example')); ?>
    			</div>
    		</div>
    	<?php endwhile; endif; ?>
    	</div>
    </div>

    Could you tell me which information to send you about the AJAX request? I see a lot of information there.

    Thanks again for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Front-end Editor] – Question when creating a post from front-end’ is closed to new replies.