Hello, I have modified my son php template, but how can I hide in the products navigation products “the arrows”?

function x_ethos_entry_top_navigation () {
if ( x_is_portfolio_item() ) {
$link = 'LINK';
} elseif ( x_is_product() ) {
$link = 'LINK';
}
$title = esc_attr( __( 'See All Posts', '__x__' ) );
?>
<div class="entry-top-navigation">
<a href="<?php echo $link; ?>" class="entry-parent" title="<?php $title; ?>"><i class="x-icon-th" data-x-icon-s=""></i></a>
<?php x_entry_navigation(); ?>
</div>
<?php
}
