I have added code to include a custom dashboard widget, but it ends up a bit funny....
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('custom_help_widget', 'Get Support', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo do_shortcode('[gravityform id="1" name="Customer Support"]');
}
Heres what it looks like..
https://dl.dropbox.com/u/9832993/shortcode.png
How can I make those edit/delete options go away?