Download Catalog User Guide
Transcript
10. Click 'OK' and then close the library.
You can now go to 'Settings | Site Options | General' and enter a filename for 'Alternative Cart
Button Image'. Then all you need to do is change the 'Add To Cart Button Layout' to 'Rollover Add
To Cart Button' and you will have a working cart button with rollovers.
Reversing the Order of Years in the Date Prompt
This fix will change the order of the years that are listed within the 'Date Prompt' drop down list –
and show the current year first (rather than showing the last year first).
1.
Go to 'Design | Library | Layouts' and open the 'Year List' group.
2.
Edit the 'Standard Year List' layout.
3.
Replace the line:
4.
with the following code
<actinic:block php="true">
echo " ";
$dates[] = '<Actinic:Variable Name="YearLayout" encoding="perl"
selectable="false" />';
</actinic:block>
5.
Next, click the orange "Click here to edit list layout settings" text and select the 'Edit
Rows and Columns' tab.
6.
Delete the text in Middle Rows > First Item > Before
7.
Delete the text in Middle Rows > First Item > After
8.
Set No of Items > Last Row to be '1'
9.
In Last Row > Before Row add the code
<actinic:block php="true"> $dates = array_reverse($dates);
foreach($dates as $thisdate) { echo "<option>$thisdate</option>";
} $dates = array(); </actinic:block>
Advanced Users Guide - 66