Possible to override this to make button update use CSS buttons instead of image file??
Of course, also requires shortening the excessively long ALT text...
Thank you, Tom
Possible to override this to make button update use CSS buttons instead of image file??
Of course, also requires shortening the excessively long ALT text...
Thank you, Tom
Files in the modules/pages folder aren't overridable.
Save a copy altering the extention to .sav or something similarCan you perhaps suggest anything on how to modify it??
Zen-Venom Get Bitten
What do you have set in
admin > config > layout settings > CSS Buttons
Zen-Venom Get Bitten
Has nothing to do with admin settings, which are already configured to show CSS buttons.
Please see THIS thread which explains the issue: http://www.zen-cart.com/showthread.p...-cart-quot-gif
THIS mod fixes things, 1st one is original, shows image, 2nd one is new, shows CSS button:
//$buttonUpdate = ((SHOW_SHOPPING_CART_UPDATE == 1 or SHOW_SHOPPING_CART_UPDATE == 3) ? zen_image_submit(ICON_IMAGE_UPDATE, ICON_UPDATE_ALT) : '') . zen_draw_hidden_field('products_id[]', $products[$i]['id']);
$buttonUpdate = ((SHOW_SHOPPING_CART_UPDATE == 1 or SHOW_SHOPPING_CART_UPDATE == 3) ? zen_image_submit(BUTTON_IMAGE_CHECKOUT, BUTTON_UPDATE_ALT2) : '') . zen_draw_hidden_field('products_id[]', $products[$i]['id']);
Now to find/fix the alt text for the update button...hopefully not too long, plus do some additional experimenting...
Thank you, Tom
Look in /includes/languages/english/YOUR_TEMPLATE/button_names.php. If the file's not there, copy it from /includes/languages/english/button_names.php and make your edits in the template-override directory.