For the 11sp1 version of ShopSite all mobile templates will use the text instead of the image assigned for the particular button. The buttons and text are configured on Preferences > Store Text > and then the individual screen like Shopping cart, Checkout, Customer Registration etc.
(Note: if you find that both the text and image for a button can't be configured independently, then you need to have a patch, which fixes this issue, applied to your store. The patches are in the ftp download area so your host should be able to get them. )
I don't believe there is a table in the help that lists what the number for specific buttons are. You could find out though, but viewing the html source of the backoffice screen where that button is configured. While viewing the html search for either the number (if you know it) or the text or image name for the button and you will see values like these for the "Return to Cart" which is found on the Checkout screen.
- Code: Select all
Return to Cart:
</td>
<td class="fv">
<table border=0 cellspacing=0 cellpadding=0>
<tr>
<td><input type=radio name=68ck value=0 >Text:</td>
<td><input type=text name=68str size=40 value="Return To Cart"></td>
</tr>
<tr>
<td><input type=radio name=68ck value=1 checked>Image:</td>
. . .
<input type=text id="t:68img" name="t:68img" size=60 value="buttons/3col-blue/btn-returntocart.png"
. . .
In this case the button number would be 68. So in the template where you use [-- BUTTON ReturnToCart --] the class would be button68. That will also be the value for the checkit function
- Code: Select all
<input type=image src="https://blister.shopsite.com/11sp1/shopsite-images/en-EU/buttons/3col-blue/btn-returntocart.png" class="button68" align="bottom" border="0" name="Return To Cart" alt="Return To Cart" title="Return To Cart" tabindex="1" onClick="return(CheckIt(68,0));" >