I've added the ELEX Woocommerce add to quote plugin, and its working fine, except the theme we are using (goodlayers infinite), doesn't have the add to quote button show up in the shop page.
I'm thinking the easiest way to change this is change the "view details" button to the add to quote button.
This is the code for the view products button, though I can't actually find it anywhere in the theme editor.
<a href="url" class="gdlr-core-product-view-detail"><i class="fa fa-eye"></i><span>View Details</span></a>
I have tried the following, but to no success
add_filter( 'gldr-core-product-view-detail', 'replace_default_button' );
function replace_default_button(){
return '<button>Add to Quote</button>';
}