yeah, you can use those css code too.
Here is the steps to remove the link of the “see all our news”:
1. create a child theme and activate it.
2. duplicate “widgets/fp-latest-news.php” file from the parent theme to the child theme
3. open fp-latest-news.php within the child theme and change this line:
<?php echo get_permalink( get_option( 'page_for_posts' ) ); ?>
to
#!
4. open functions.php in the child theme and add this line:
if ( function_exists('siteorigin_panels_activate') ) {
require_once get_template_directory() . "-child/widgets/fp-latest-news.php";
}
5. open functions.php in the parent theme and change this line:
require get_template_directory() . "/widgets/fp-latest-news.php";
to
// require get_template_directory() . "/widgets/fp-latest-news.php";
Thats it, let me know how it goes.