• Hi,

    I’m interested by your plugin but I don’t understand the instructions at all even with the video.

    What I have to add exactly and where once the plugin is installed?

    I just need it for 1 acf field for the moment.

    I use a premium theme and my page is a lot different than the one of the basic wp theme. I have a page named “single-content.php” I think that’s the one I need to modify but after it I’m completely lost.

    https://wordpress.org/plugins/live-edit/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey subfight

    You just need to add the live edit code to a containing element in your theme. For instance, as you only have the one field you need to have editable, your code might look like this:

    <div <?php if(function_exists(“live_edit”)){ live_edit(‘editable_field’); }?>>
    <?php the_field(‘editable_field’); ?>
    </div>

    If you were wanting, ultimately, to control multiple fields… like post title, content etc you’d add the live edit code to an element that wraps all of those fields.

    what is editable field?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Don't understand instructions’ is closed to new replies.