Yeah i would if possible. I currently have it auto sliding so the user does not need to touch it. But on mobile devices its stopping the user from being able to scroll the page up and down (its quite big on the page i have it on buy design).
In case anyone else was looking for the answer.
function excerpt_read_more_link($output) {
global $post;
global $product;
return $output . '<a href="'. get_permalink($post->ID) . '"> Only ' . $product->get_price_html() . '</a>';
}
add_filter('the_excerpt', 'excerpt_read_more_link');