Hi,
1)
.masonry-items .blog-item .date-overlay,
.recent-post .date-overlay {
display: none;
}
2) Please install and activate the supplied child theme, inside the child theme functions.php
file paste this:
/**
* Change text strings
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function sf_change_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'VIEW ALL ARTICLES' :
$translated_text = __( 'Your Custom TEXT HERE', 'swift-framework-plugin' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'sf_change_text_strings', 20, 3 );