If you want to display all links in this widget even if a user did not add the content, you should check all the plugins which add the link to this widget and remove the condition which is responsible for the link appearance. Let's take the Blog plugin as an example. If you take a look at the /ow_plugins/blogs/init.php file you will see the following condition:
if ( $count > 0 )
{
if ($postCount > 0)
{
$url = OW::getRouter()->urlForRoute('blog-manage-posts');
}
else if ($draftCount > 0)
{
$url = OW::getRouter()->urlForRoute('blog-manage-drafts');
}
$event->add(array(
BASE_CMP_QuickLinksWidget::DATA_KEY_LABEL => OW::getLanguage()->text('blogs', 'my_blog'),
BASE_CMP_QuickLinksWidget::DATA_KEY_URL => OW::getRouter()->urlForRoute('user-blog', array('user'=>$username)),
BASE_CMP_QuickLinksWidget::DATA_KEY_COUNT => $count,
BASE_CMP_QuickLinksWidget::DATA_KEY_COUNT_URL => $url,
));
}
This condition says that if there is at least one post, the link should appear.
Sorry,
but this is all I can provide you with. If you want to make modifications,
you should have knowledge of PHP, HTML, CSS and programming skills.