Hi,
To add a link to the Latest News Widget, you can edit framework > php > class-framework-widgets.php then find this code
$title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
$count = empty($instance['count']) ? '' : $instance['count'];
$cat = empty($instance['cat']) ? '' : $instance['cat'];
$excerpt = empty($instance['excerpt']) ? '' : $instance['excerpt'];
$image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget';
if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
Place this code below.
echo "<a class='alignright' style='margin-top: -25px;' href='LINK TO YOUR BLOG'>View All</a>";
You need to place your blog url on the anchor tag.
Regards,
Ismael