Excluding front_page from is page condition

if ( !(is_page() || is_front_page()) ) {
/* These features will not be visible on front page and on single pages. */
}

If you want to hide something only on the front page regardless the front page is a static page or list of blog posts then use this code:-

 if ( !(is_front_page()) ) {
 /* These features will not be visible on front page. */
 }