Hi,
I just added a custom post type, by adding the “basic example”
http://codex.wordpress.org/Post_Types
This custom post type appears in my blog.
When I switch to the “Products” page, I get the “Stats” column but no icon as I have not added any posts.
I added a post and saved it as a draft and the icon appears for this row. The link appears correct
Not to down play this, but did you add a post?
If so perhaps you can send me details of your custom post type, perhaps there is something extra you are doing that is causing a problem.
I am just releasing version 1.3.0 which adds the statistics to the “Pages” administration page. Try this version and see if it helps?
Please let me know how you get on.
Doing a bit more research it appears that I would have to create a hook per custom post type.
http://codex.wordpress.org/Plugin_API/Action_Reference/manage_$post_type_posts_custom_column
At this point it is not something I can’t do in a generic extension.
Perhaps you can attempt to extend the plugin for your custom post type by:
1. Create a new add_filter for the custom post type
2. Create a new add_action
3. Create a copy of the ..render_row method specific to your custom post.
4. Update the css to ensure the width of your new row is fixed.
That should do it.