As Kevin and I push to get Piklist to v1.0, we really want to thank all of you who have been testing these beta versions and posting your tickets. Many of you have been creating fields Kevin and I have never thought of, and in doing so, you have uncovered some awesome bugs!
Thanks to you, Piklist v0.9.9.3 is on WordPress.org trunk and ready for testing.
This version fixes all known issues, including, but not limited to:
- File field and Editor highlight better when required.
- Settings tabs are now backwards compatible with the new Workflow system.
- Piklist allows posts to save normally. Thanks Mehdi for letting us test on your site!
- Validation rules within groups work as expected.
- Validating certain fields within widgets work as expected.
- Editors in add-mores now retain content markup.
- Multiple User Roles are now saving.
Please keep testing…we are getting close to v1.0!
Small stuff but wanted to let you know that I have twice now had to add a little wp admin css to adjust for the upload media option. It keeps overextending the image past its container dimensions. I have added this little tid bit that I think you guys should implement soon.
<?php
add_action('admin_head', 'piklist_tweaks');
function piklist_tweaks() {
echo '
li.attachment.selected.ui-sortable-handle[style] { max-width: 100% !important;}
}
‘;
}
?>
Can you post a screenshot of the before and after?