• Hi,

    Fantastic plugin. One issue I am having trouble with is editing the featured imaged when it is a thumbnail.

    With my theme the featured image is posted as a thumbnail on the right side of the text.

    Hovering the image starts an ‘edit’ session for changing the featured image, but as soon as the mouse is moved over the text area, the edit session switches to a ‘text’ edit session.

    The only work around I have to date, is to move the thumbnail to the left and remove left margin ( as even a smallish margin causes the text switch-out)

    A solution like a short delay between closing the image edit left tab and opening the text edit tab would help. Or perhaps and option to switch tab sides.

    Hopefully you can understand my issue. fixing this will be a major usability boost.

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

Viewing 1 replies (of 1 total)
  • Thread Starter roibot

    (@roibot)

    I have tried static positioning of the edit button , which works ok for text but for thumbnail, clicking the edit button just invokes the link, rather than the editor. Removing the link, clicking the edit just does nothing. (floating edit works fine on the images, IF you can get to it fast enough before it disappears crossing from a thumbnail on the right to the floating edit on the left margin) Any suggestions.

    <div class="fee-group">
      <div class="fee-buttons"></div>
      <!-- existing working code -->
        <?php
         $large_image_url = wp_get_attachment_image_src(     get_post_thumbnail_id(), 'large');
        echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" >';
        the_post_thumbnail('thumbnail');
       echo '</a>';
       ?>
    
    </div>

Viewing 1 replies (of 1 total)
  • The topic ‘Front-end Editor: Featured Image Editing’ is closed to new replies.