For anyone wanting to use the same hard-coded workaround, to avoid conflicts, probably best to use...
BUTTON_SAVE_FOR_LATER_PRODUCT
which is in sfl_defines.php too and, I believe, intended for use on Product_Info pages.
In tpl_product_info_display.php
Replace:
PHP Code:
echo '<input type="submit" value="' . BUTTON_SAVE_FOR_LATER_PRODUCT_ALT . '" name="sfl" />';
With:
PHP Code:
echo '<input class="cssButton submit_button button_save_for_later_product" onmouseover class="cssButtonHover submit_button button_save_for_later_product" onmouseout class="cssButton submit_button button_save_for_later_product" type="submit" value="' . BUTTON_SAVE_FOR_LATER_PRODUCT_ALT . '" name="sfl" />' ;
In stylesheet_css_buttons.css, add the following with your own formatting to suit:
Code:
input.button_save_for_later_product{}
input.button_save_for_later_product:hover{}
input.button_save_for_later_product:active{}
Cheers
GAM