Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To create a screen branding theme navigate to:

Panel

Main Menu Configuration  Screen Branding Themes

To create a new theme click on the New Theme button shown below.

...

  • Determine which graphic(s) you want to upload.
  • Identify where (path) they reside on your system.
  • Navigate to the Screen Branding Themes section of UltraCart.
Panel

Main Menu Configuration  Screen Branding Themes

 

  • Enter the Theme Editor by clicking on the "Edit" button to the right of the default theme.
  • Click on the Graphics Tab.
  • Type the location (path) of the graphic in the field provided and click on the "Upload" button.

...

When viewing the "buy form" code of an item, you'll notice that there is not reference to the themecode, so the default theme is assumed:

Code Block
languagegroovy
themeDJangolanguagegroovy
titleDefault Buy Form (no Themecode specified)
<form method="post" action="https://ucsupport.ultracart.com/cgi-bin/UCEditor">
<input type="hidden" name="merchantId" value="DEMO" />
<input type="hidden" name="add" value="Bone" />
<table class="uc-item-table">
<tr class="uc-item-qty-row">
<td class="uc-item-qty-label">Qty</td>
<td class="uc-item-qty-field">
<input type="text" name="quantity" value="1" />
</td>
</tr>
<tr class="uc-item-cost-row">
<td class="uc-item-cost-label">Cost</td>
<td class="uc-item-cost-value"><script type="text/javascript" src="https://ucsupport.ultracart.com/cgi-bin/UCPrice?MERCHANTID=DEMO&ITEM=BONE&output=Javascript"></script></td>
</tr>
<tr class="uc-item-submit-row">
<td></td>
<td>
<input type="submit" name="submit" value="add to cart" />
</td>
</tr>
</table>
</form>

Toy specify a theme code add a hidden input field, type as hidden and value of the theme code you want it to use:

Code Block
languagegroovy
themeDJangolanguagegroovy
titleBuy Form with themecode specified
<form method="post" action="https://ucsupport.ultracart.com/cgi-bin/UCEditor">
<input type="hidden" name="merchantId" value="DEMO" />
<input type="hidden" name="add" value="Bone" />
<input type="hidden" name="themecode" value="CSTM" />
<table class="uc-item-table">
<tr class="uc-item-qty-row">
<td class="uc-item-qty-label">Qty</td>
<td class="uc-item-qty-field">
<input type="text" name="quantity" value="1" />
</td>
</tr>
<tr class="uc-item-cost-row">
<td class="uc-item-cost-label">Cost</td>
<td class="uc-item-cost-value"><script type="text/javascript" src="https://ucsupport.ultracart.com/cgi-bin/UCPrice?MERCHANTID=DEMO&ITEM=BONE&output=Javascript"></script></td>
</tr>
<tr class="uc-item-submit-row">
<td></td>
<td>
<input type="submit" name="submit" value="add to cart" />
</td>
</tr>
</table>
</form>

...