So far I am very impressed with how much time this plugin has saved!
After successfully setting up a CPT with the related frontend dashboard/edit pages, there are a few tweeks I want to make to the Dashboard elements:
- Remove the Welcome message
- Modify the post title url to forward on to the edit page, not the permalink
The templating system seems only to address field rendering.
After opening up the Dashboard.php file I see that the following lines are hard-coded:
$this->show_welcome_message( $atts );
...
<td><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></td>
Unless I missed something, it seems filters will need to be added to modify these. However, since this would mean modifying the plugin, I would also like to submit a github/bitbucket pull request to have any modifications considered for inclusion in a future release.
In short: am requesting the ability to contribute and help improve the flexibility of this already useful plugin.