Air. HTML Theme Documentation


Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!

Extract the zip file


After extract the main zip file, you'll see these folders and files:

We provide 37 HTMLs:

Introduction

All of the information within the main content area is nested within a div with an id of "wrap". Here is the general structure.
All style.css are put before </head>, put all js files(In addition to jquery.js) before </body>.

<!-- Page Loading -->
<div...>...</div>
<!-- Jplayer -->
<div...>...</div>
<div class="wrap-all">
    <div id="wrap-outer">
        <!--Header-->
        <header...>...</header>
        <!-- Navigation for menu hide layout -->
        <div id="menu-panel"...>...</div>
        <!--#main-wrap-->
        <div id="wrap">...
        </div> <!--End #wrap-->
    </div><!--End #wrap-outer-->
</div><!--End wrap-all-->
<footer...>...</footer>


Meta

Within each html, there is meta data in <head> wrap

<meta property="og:title" content="Air. Lightweight Portfolio  Photography HTML Theme" />
<meta property="og:description" content="The landing page of Air. lightweight responsive theme, designed by BWSM" />
<meta property="og:url" content="http://themes.uiueux.com/demo/air/entry/" />
<meta property="og:site_name" content="Air. Lightweight Portfolio & Photography HTML Theme Live Demo Site" />
<meta property="og:image" content="http://themes.uiueux.com/demo/air/entry/01-cover.jpg" />

The meta data is for search site or social media site, you need change it as yourself's infomation.

You also replace the shortcut icon images url here:

<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-114x114.png">


Header

Open index.html with editor, you'll find the code:

<!--header-->
<header id="header">...<header>
Show Menu Icon(Menu hide) layout:

Add className "navi-hide" into <body> tag:

<body class="... navi-hide ...">
Show Menu layout:

Add className "navi-show" into <body> tag:

<body class="... navi-show ...">

The navigation wrap should be in(refer home8.html):

<header id="header">
    ...
     <div id="header-meta">  
     ...  
      <nav class="navi-header">
       ...
      <nav>
Social Icons:

The social icons wrap could be in <header> wrap, if you write the className "center-ux" into <nav class="navi-header"> wrap and "navi-center" into <body> wrap, the navigation will be centered. Refer home9.html:

<nav id="navi-header" class=" center-ux">
<body class="... navi-center ...">
<div class="header-bar-social">
    <ul class="socialmeida clearfix">
     <li class="socialmeida-li">
      <a title="Facebook" href="#" class="socialmeida-a"><span class="fa fa-facebook"></span></a>
     </li>
     <li class="socialmeida-li">
      <a title="Twitter" href="#" class="socialmeida-a"><span class="fa fa-twitter"></span></a>
     </li>
     ...
    </ul>

Change the className here <spanclass="fa fa-facebook"... , you'll find the icons: fontawesome.io/icons/

Logo:
<!--Logo-->
    <a href="#" title="Air. Responsive HTML Theme">...<img alt="Air." class="logo-image" src="img/logo.png"></a>

The image logo size is limited as 240px(width) * 120px(hight), limited as 120px(width) * 80px(height) in mobile layout.

Menu:

Edit header menu here:

<!--Menu-->
    <nav id="navi-header">
        <div id="navi_wrap" class="menu-menu-1-container">
            <ul class="menu clearfix">
                <li class="menu-item current-menu-item"><a>Home</a></li>
                <li class="external menu-item menu-item-type-custom menu-item-has-children"><a href="#">Works</a></li>
                <ul class="sub-menu">
                    <li class="external menu-item"><a href="works-a.html">Submenu item A</a></li>
                    ...
                </ul>
                <li class="external menu-item"><a href="#">Menu item</a></li>
                ...
            </ul>
        </div>
    </nav>

Each <li> tag with class "menu-item" is one menu item, you could edit the text and link.

<li class="menu-item"><a href="somepage.html">Menu item</li>

If you want to add submenu in Menu item, just insert code in <li>... Menu item ... </li> like this:

<li class="menu-item menu-item-has-children"><a href="somepage.html">Menu item</a>
    <ul class="sub-menu">
        <li class="menu-item"><a href="otherpage.html">Sub menu</a></li>
    </ul>
</li>


Footer

Open index.html with editor, footer code is here:

<footer id="footer" class="footer-centered">
    
</footer>


Mobile Navigation

You could edit the menu, logo and social icons in mobile layout. It is for "Show Menu Icon" layout also.

<div id="mobile-panel">...


Page Loading

Find the code after <body>, the className "visible" need to be set for loading-mask1:

<div class="page-loading fullscreen-wrap visible">
...
</div> 

Main Content

You should put the main content things to the <div id="wrap"> wrap.

    <div id="wrap">
    ...
    </div>
Slider
Big Text Hero
<div class="topslider top-slider-text">
    <div class="text-slider-inn middle-ux">
        <h1 class="slider-headding slider-headding-1 headding-with-bg" data-bg="****.jpg">
              ...

The background image clip effect is for Webkit Browser only, like Chrome, Safari. If you don't show the background, please remove data-bg and className "headding-with-bg".

Carcousel Slider
<div class="topslider fullscreen-wrap">
    <!--The data-auto is for slider autoplay by default, default is false, you could set true also-->
        <div class="owl-carousel" data-auto="true" data-item="1" data-center="false" data-margin="0" data-autowidth="false" data-slideby="1" data-showdot="true">
            <!--Each tag section is a slide item-->
            <section class="item">

Each <section class="item"> wrap is one slide item. Refer home5.html

Sidebar Layout

The sidebar layout html structure should be like(refer content-standard.html):

<div class="content_wrap_outer container two-cols-layout">
    <div class="sidebar-layout row">
        <div id="content_wrap" class="col-md-9 col-sm-9">
        ...
        <!--Sidebar Widgets-->
        <aside id="sidebar-widget" class="col-md-3 col-sm-3">
        ...

If you set left sidebar, please set the className "pull-right"(refer content-standard-sidebar-left.html)

Fullwidth Layout

The with fullwidth html structure looks like(refer content-elements.html):

<div class="content_wrap_outer fullwrap-layout">
    <div class="fullwrap-layout-inn">
        <div id="content_wrap">
        ...


Responsive

The theme is default to show the responsive layout when screen width is less 768px. You could remove the class "responsive-ux" in <body> tag to forbid it.

Portfolio Listing




Including 3 types of template: Introduction Above List, Left Introduction & Right Filter and Introduction In List

Introduction Above List

Introduction Above List

This template html structure looks like:

    <div id="content_wrap">
        <!--Introduction-->
        <section class="ux-portfolio-template-intro container">
        ...
        <div class="container-masonry ux-portfolio-spacing-40 ux-portfolio-2col container ux-has-filter filter-left" data-col="2" data-spacer="40" data-template="intro-above">
            <!--Filter-->
            <div class="clearfix filters">
            ...
            <!--Portfolio Listing-->
            <div class="masonry-list masonry-grid grid-mask-filled-left">
        ...

The Filter text align, set the className in <div class="container-masonry ... "> wrap:
Filter text align left : filter-left
Filter text align right : filter-right
Filter text align center : filter-center

Refer: home4.html

Left Introduction & Right Filter

Left Introduction / Right Filter

This template html structure looks like:

<div id="content_wrap">
    <class="container-masonry ux-portfolio-spacing-40 ux-portfolio-3col ux-has-filter" data-col="3" data-spacer="40" data-template="intro-r-filter">
        <!--Introduction right & Filter left-->
        <div class="container page-template-intro-left-list-right">
            <!--Introduction-->
            <section class="ux-portfolio-template-intro">
            ...
            <!--Filter-->
            <div class="filters-wrap">
                <div class="clearfix filters">
            ...
        <!--Portfolio Listing-->
        <div class="masonry-list masonry-grid grid-mask-filled-left">
    ...

Refer: home6.html

Introduction In List

Introduction In List

This template html structure looks like(The introduction and filter shown in first grid item):

<div id="content_wrap">
    <div class="container-masonry ux-portfolio-spacing-40 ux-portfolio-3col container ux-has-filter" data-col="3" data-spacer="40" data-template="intro-in-list">
        <!--Portfolio Listing-->
        <div class="masonry-list masonry-grid grid-mask-filled-left">
            <section class="grid-item--width2 grid-item-long grid-item filter-in-grid filter_works filter_branding filter_illustration filter_photography-works">
            ...
                <!--Introduction-->
                <section class="grid-inn-con ux-portfolio-template-intro">
                ...

Refer: home3.html

Thumbnail Item

Each <section class="grid-item ..."> is one thumbnail item(grid item). Refer index.html

<section class="grid-item grid-item-small *** ">
    <div class="grid-item-inside">
        <!--Hot Link-->
        <a title="" class="grid-item-mask-link" href="***">
        <!--Text: title, meta-->
        <div class="grid-item-con-text">
        <!--Image: set the thumbnail image file url into data-bg="" -->
        <div class="brick-content ux-lazyload-wrap" style=" padding-top: 150%;">
            <div class="ux-lazyload-bgimg ux-background-img" data-bg="***.jpg">
            ...

Please set the thumbnail image file url into data-bg="". We use the placehold url to replace the real image file in demo template file (like http://placehold.it/650x490)
The Masorny list use <img data-src="" > instead of <div class="ux-lazyload-bgimg ux-background-img" data-bg="">. (refer: portfolio-listing-7.html)
The padding-top percentage value of brick-content wrap is the thumbnail image origin size (height / width) * 100

Portfolio Listing Style

Including Masonry Grid, Masonry, Grid and Grid with Title:

 <div id="content_wrap">
    <div class="container-masonry ux-portfolio-spacing-40 ux-portfolio-3col container ux-has-filter filter-center" data-col="3" data-spacer="40">
            ...
        <div class="masonry-list masonry-grid grid-mask-filled-left">
Masonry Grid

Please set the className "masonry-grid" in <div class="masonry-list ..."> wrap. Each <section class="grid-item ..."> is one grid item. Refer index.html

<section class="grid-item grid-item-small filter_branding filter_illustration filter_works">
...

There are 4 kinds of grid item size:
Masonry Grid - Item Size

Masonry

Refer portfolio-listing-7.html

Masonry
Grid

Refer portfolio-listing-3.html

Grid List
Grid with Title

Refer portfolio-listing-4.html

Grid List
Portfolio Listing container width

Set the className into <div class="container-masonry ... "> wrap:
Normal(Main Container Width) className: container (refer:index.html)
Fullwidth className: ux-portfolio-full (refer:home6.html)
Fullwidth Filled className: ux-portfolio-filled (refer:home5.html)

Columns

Set the className and data-col value into <div class="container-masonry ... "> wrap:
2 columns: ux-portfolio-2col / data-col="2"
3 columns: ux-portfolio-3col / data-col="3"
4 columns: ux-portfolio-4col / data-col="4"
5 columns: ux-portfolio-5col / data-col="5"
6 columns: ux-portfolio-6col / data-col="6"

Items Spacing

Set the className and data-col value into <div class="container-masonry ... "> wrap:
Normal spacing: ux-portfolio-spacing-40 / data-spacer="40"
Narrow spacing: ux-portfolio-spacing-10 / data-spacer="10"
No-spacing: ux-portfolio-spacing-none / data-spacer="0"

Mouseover Effect

Set the className and data-col value into <div class="masonry-list ... "> wrap:
Bordered Mask(Text Left): grid-mask-boxed-left
Bordered Mask(Text Centered): grid-mask-boxed-center
Filled Mask(Text Left): grid-mask-filled-left
Filled Mask(Text Centered): grid-mask-filled-center
Image Zoom In: img-zoom-in

Open item By Lightbox

Please add className "lightbox-photoswipe" into <div class="masonry-list ... "> wrap, add data-lightbox="true" into <div class="grid-item-inside ... "> wrap for each thumbnail item, the data-size is target image origin size(width x height):
Tips: If you want to add the image caption into lightbox, please add the caption text into title="Image Caption"

<div class="masonry-list masonry-grid grid-mask-boxed-left lightbox-photoswipe">
    ...
    <section class="grid-item *** ">
        <div class="grid-item-inside" data-lightbox="true">
        ...
            <a title="Image Caption" class="lightbox-item grid-item-mask-link" href="***.jpg" data-size="1000x665"> 

If you want to show embed video into lightbox, add data-type="video" in tag a, add the embed video code, it looks like:

<a title="Image Caption" class="lightbox-item grid-item-mask-link" href="***.jpg" data-size="1000x665" data-type="video"> 
    <div class="hidden">
        <div class="videoWrapper video-wrap video-post-wrap">
            <iframe src="https://player.vimeo.com/video/xxxx" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
        </div>
    </div>
</a>    
        

Project Item


Including 4 types of template: Standard, 2 Cols Layout(Text + Gallery Grid), Slider and Fullscreen Slider

Standard

Please add className into <body> tag: single-portfolio-fullwidth.
Please refer:
project-item-standard-text-left.html
project-item-standard-text-center.html
project-item-standard-start-from-gallery.html
project-item-standard-grid.html

Project Item

The html structure looks like:

<div id="wrap">
    <!--Page Cover-->
    <div class="post-cover ux-lazyload-wrap fullscreen-wrap">
        ...
    <div id="content">
        ...
        <!--title-->
        <!--Project text and social share-->
        <!--Gallery Grid-->
    

Page Cover

If you set page cover, please add className into <body> tag: page_from_top non_bg_header.

Text Element


The title wrap html structure looks like:

<div class="title-wrap container gallery-des-center">
    <div class="title-wrap-con">
        <h1 class="title-wrap-tit title-masking" data-bg="***.jpg">Title
<div class="container gallery-post-des gallery-des-center">
    <!-- Content -->
    <div class="entry">
    <!-- Social Share Media-->
    <div class="social-bar">


If you remove the className "gallery-des-center", the text would be align left.
The title background image clip effect is for Webkit Browser only, like Chrome, Safari. If you don't show the background, please remove data-bg and className "title-masking".

Social Media Share

If you want to use social share icons, please make sure there is className "gallery-show-social-share-body" in <body> tag.
Please replace the page url for each share icon item:

<ul class="post_social post-meta-social">
    <li class="post-meta-social-li">
        <a class="share postshareicon-facebook-wrap" href="http://www.facebook.com/sharer.php?u=page url" onclick="window.open('http://www.facebook.com/sharer.php?u=page url','Facebook','width=600,height=300,left='+(screen.availWidth/2-300)+',top='+(screen.availHeight/2-150)+''); return false;">          
        
Gallery Grid

The html struture looks like:

<div class="blog-unit-gallery-wrap gallery-spacing-40">
            ...
    <div class="list-layout lightbox-photoswipe" data-gap="40">
        <!--Row-->    
        <div class="list-layout-col list-layout-col1 clearfix">
            <!--Item Image Wrap-->
            <div class="list-layout-col1-item list-layout-item">
                <div class="list-layout-inside">
                    <div class="single-image mouse-over" data-lightbox="true">
                        <a title="" class="lightbox-item" href="the-target-image-file.jpg" data-size="1400x788">
                            <span class="ux-lazyload-wrap" style=" padding-top: 56.285714285714%;">
                                <img src="img/blank.gif" data-src="the-thumbnail-image-file.jpg" width="1400" height="788" class="list-layout-img gallery-images-img ux-lazyload-img lazy">
            ...
        <div class="list-layout-col list-layout-col2 clearfix">
            <div class="list-layout-col2-item list-layout-item">
            <div class="list-layout-col2-item list-layout-item">
            ...

The 1 - 4 images could be put into each row. You could notive the className list-layout-col1 / list-layout-col1-item, it is for one image each row.

Please set the thumbnail image file url into <img data-src="">. We use the placehold url to replace the real image file in demo template file (like http://placehold.it/650x490). Set the target image file url into <a class="lightbox-item" href="">.The padding-top percentage value of ux-lazyload-wrap wrap is the thumbnail image origin size (height / width) * 100.

Set the className and data-gap value for image spacing:
gallery-spacing-0 / data-gap="0"
gallery-spacing-2 / data-gap="2"
gallery-spacing-10 / data-gap="10"
gallery-spacing-20 / data-gap="20"
gallery-spacing-40 / data-gap="40"
gallery-spacing-60 / data-gap="60"
gallery-spacing-80 / data-gap="80"

2 Cols Layout(Text + Gallery Grid)

Please add className into <body> tag: single-portfolio-2c-body
Please refer:
project-item-2cols-gallery-left-filled.html
project-item-2cols-gallery-right-filled.html
project-item-2cols-gallery-right.html

Project Item

The html structure looks like:

<div class="row single-gallery-col2 single-gallery-col2-filled gallery-left">
    <div class="single-col2-text-wrap col-sm-6 col-md-6 sticky_column">
        ...
        <!--title-->
        <!--Project text and social share-->
    <div class="single-col2-gallery-wrap blog-unit-gallery-wrap gallery-spacing-40 col-md-6">
        <!--Gallery Grid-->
    ...    
    
Slider

Please add className into <body> tag: single-portfolio-fullwidth-slider
Plrease refer: project-item-slider.html

Project Item

The html structure looks like:

<div class="blog-unit-gallery-wrap single-fullwidth-slider-wrap">
    <!--Slider wrap-->   
    <div class="owl-carousel" data-item="3" data-center="true" data-margin="30" data-autowidth="true" data-slideby="1" data-showdot="false" data-nav="true" data-loop="true">
        <!--Each slide item-->
        <section class="item">
        ...
        <!--title-->
        <!--Project text and social share--> 
    ...    
    
Fullscreen Slider

Please add className into <body> tag: single-portfolio-fullscreen-slider
Plrease refer: project-item-fullscreen-slider.html

Project Item

The html structure looks like:

<div class="blog-unit-gallery-wrap fullscreen-wrap">
        ...
    <!--Slider wrap-->   
    <div class="owl-carousel" data-item="1" data-center="false" data-margin="0" data-autowidth="false" data-slideby="1" data-showdot="true" data-nav="false" data-loop="false" data-lazy="true">
        <!--Each slide item-->
        <section class="item">
        ...
        <!--title-->
        <!--Project text and social share--> 
    ...    
    


Elements


The basic container consists of: Fullwidth wrap and General wrap.

Fullwidth wrap

If you want put the content fill to fullwidth of main wrap, use the fullwidth wrap.

HTML Structure
<!--Fullwidth section: xxx-->
<div class="fullwrap_moudle">
    <div class="row-fluid">
        <!--set id here, menu item link here, bottom-space-40 means 40px spacer with next section-->
        <div id="xxx" class="fullwidth-wrap bottom-space-40">
            <div class="container">
                <div class="fullwidth-wrap-inn">
                    <!--fullwrap-inn-width-70 means there is 70% width for inner wrap, it is optional-->
                    <!--the options: fullwrap-inn-width-50/fullwrap-inn-width-60/fullwrap-inn-width-70/fullwrap-inn-width-80/fullwrap-inn-width-90-->
                    <div class="row-fluid fullwrap-inn-width-70">
                        <!--put elements here-->
                        <!--bottom-space-no means there is not bottom spacer, it is optional-->
                        <!--the options: bottom-space-20/bottom-space-40/bottom-space-60/bottom-space-80-->
                        <div class="col-md-12 col-sm-12 moudle bottom-space-no">
        

The "col-md-12 col-sm-12" means width for elements, the template is based on bootstrap 3.3.x. It obeys the bootstrap grid system, there are 12 grids in each row:
col-md-3 col-sm-3 = 3 cols width
col-md-4 col-sm-4 = 4 cols width
col-md-6 col-sm-6 = 6 cols width
col-md-12 col-sm-12 = 12 cols width (fullwdith of outer wrap)
(check more)

Background Parallax

You could set the background image parallax for the fullwidth wrap, please refer page-about.html(yes, it could be set a page cover also)

<div class="fullwrap_moudle">
    <div class="row-fluid">
        <div id="testimonial" class="fullwidth-wrap top-space-80-in bottom-space-40-in  fullwidth-text-white  ">
            <div data-type="background" class="parallax back-background" data-ratio="0.5">
                <img class="back-background-img" src="xx.jpg" alt="xx" />
    

You could change the image in url(). The data-ratio is the ratio of scrolled speed. You could set it a number ( 0.1 - 1 )
If it is set as page cover, please make sure there is the className "page_from_top" in <body> tag.

Background Video

You could set the background video for the fullwidth wrap also.

<div class="fullwrap-video">
    <video autoplay="" loop="" poster="http://ximudesign.com/aside/wp-content/uploads/sites/17/2014/04/video-post.jpg">
        <source src="http://ximudesign.com/project/bgvideo.webm" type="video/webm">
        <source src="http://ximudesign.com/project/bgvideo.m4v" type="video/mp4">
        <source src="http://ximudesign.com/project/bgvideo.ogg" type="video/ogg">
    </video>
    <div class="video-cover" style="background-image: url(http://ximudesign.com/aside/wp-content/uploads/sites/17/2014/04/video-post.jpg);"></div>
</div>
    

Video type:

  • the “.webm” video url here for firefox/chrome/opera browser
  • the “.m4v” or ".mp4" video url here for IE/chrome/safari browser
  • the “.ogg” or ".ogv" video url here for firefox/chrome/opera browser

Touch devices do not support video background, you would set a background image.


General wrap

If you want put the content in boxed wrap of main wrap, use the contnaier wrap as the Portfolio list in home03.html

<div class="container">
    <div class="row-fluid">
...
    </div>
</div>            

The Elements



The Elements(modules) inluded: Button, Heading, Google maps, Contact form...

Note:

Be sure all the Elements works, please make sure the things:

Link the pagebuild.css above style.css before </head>

<link rel="stylesheet" id="pagebuild-css" href="./css/pagebuild.css" type="text/css" media="screen">

Link the theme.pagebuilder.js / bm-shortcode.js above custom.theme.js (before </body>)

<script type="text/javascript" src="js/theme.pagebuilder.js"></script>
<script type="text/javascript" src="js/bm-shortcode.js"></script>

Put the js codes before </head>

<script type="text/javascript">
    var JS_PATH = "js";
</script>
Text

The text elements included: H1-H6 font, Capital first letter, Text with icon list, please refer content-typography.html

Google map

Please refer page-contact.html, the google map js is necessary(you could get the Google ApiKey here):

<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?v=3.exp&key=Google AikKey'></script>

The map html structure:

    <div class="module-map-canvas" 
    data-add="Sydney, NSW"
    data-l="-33.8674869" data-r="151.20699020000006"
    data-zoom="17"
    data-pin="t"
    data-view="map"
    data-dismouse="f"
    data-pin-custom=""
    data-style="f"
    data-pin-custom="xxx.png"
    style="height: 360px;">
    </div>

Data-view options are: map, satellite, map_terrain. option value "t" present true and "f" present false

Contact form

Please refer page-contact.html. Set contact form receive email address in file contact.php here:

$mailTo = 'yourmail@yourmal.com';

It need the site spacer supported PHP and mail server.
If the mail server of PHP doesn’t work. Please check.

Big Number

Please refer page-about.html, the js/infographic.js is necessary

<div class="col-md-3 col-sm-3 moudle">
<section class="infrographic bignumber ux-mod-nobg">
...
</section>
</div>
Other elements

Including Button, Image, Icons, Switching Words... Please refer content-element.html.

Css files

The main CSS files located in the "css" folder.

If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.

Open the styles folder, you'll find all css files.

Note:

The main Javascript files located in the "js" folder.

  1. jQuery.js - JavaScript liberary, v1.12.4
  2. main.js - main js plugins: Waypoints v4.0.1, isotope, Modernizr 3.3.1, imagesLoaded v3.1.6, PhotoSwipe v4.0.5, Owl carousel v2.0.0, jplayer v2.9.2,Sticky-kit v1.1.2, VelocityJS v1.3.1
  3. infographic.js - Big Number js
  4. bm-shortcode.js - Elements js
  5. theme.pagebuilder.js - Elements js
  6. custom.theme.js - main js

Note:

  1. Make the custom.theme.js and theme.pagebuilder.js are at last 2 lines(below other js files).
Hey! Thanks for purchasing a bwsm item, I truly appreciate it! Support for all our products is conducted through the UIUEUX Support Forums, if you’d like to start a new thread over there a support team member will get to your topic as soon as possible (keep in mind time zones and holidays.) You will need your purchase code and as much info as possible please!
 
Keep in mind when making a topic you can mark the topic as private so your sites URL, and commonly required information such as wp-admin login details / temp accounts will only be seen by the support team member.
 
Support Forums | Find your “Item Purchase Code