• Resolved John Brand

    (@brandbrilliance)


    Hi Frankie

    I found a small bug when there are post format applied to a post, due to the way you’ve written your Jquery stuff. I’ve posted a solution, and it’s actually more correct than your current code 😉

    If you have post formats, wordpress adds a small image, and when you set it to archive status, the image moves to the right, because you used “prepend” which puts the title before the image (instead of replacing the current link part)

    archive-post-status.php, line 245
    (I’ve comment your original lines and then added the fix line)

    // $row.find( '.column-title a.row-title' ).remove();
    //$row.find( '.column-title strong' ).prepend( title );
    $row.find( '.column-title a.row-title' ).replaceWith( title );

    https://wordpress.org/plugins/archived-post-status/

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post State Format Bug (with fix)’ is closed to new replies.