Need to convert 'select options' text link to an image button

I’d like to convert ‘select options’ text link that appears in the ‘products grid’ view to a n image button like add to cart, is it possible?



thanks.

[quote name=‘dsalynin’]I’d like to convert ‘select options’ text link that appears in the ‘products grid’ view to a n image button like add to cart, is it possible?



thanks.[/QUOTE]



I found a solution for this…



Edit the file /skins/YOUR SKIN NAME/customer/buttons/button.tpl



Around line 26 replace


{$but_text}


with







NOTE: I’m using 2.1.4 but I don’t think this file has changed much in recent versions

Did this but still not working?? Anyone know the fix ??

Anyone…?

You could probably do something like this in jQuery:

$('.ty-product-list__control a.ty-btn__primary').replaceWith('');

I'm using it to replace the words "Select Options" on the product listing with "Customize":

$('.ty-product-list__control a.ty-btn__primary').text('Customize');

:)

You could probably do something like this in jQuery:

$('.ty-product-list__control a.ty-btn__primary').replaceWith('');

I'm using it to replace the words "Select Options" on the product listing with "Customize":

$('.ty-product-list__control a.ty-btn__primary').text('Customize');

:)

Actually the text link was replaced with the button in the latest CS-Cart versions