Owlet Template - About Us

by Dovy Paukstys

HTML

<script src="//fonts.googleapis.com/css?family=.|Muli:light,normal,bold|Muli:light,normal,bold"></script>
<link rel="stylesheet" href="//cdn.shopify.com/s/files/1/1004/3036/t/2/assets/styles.scss.css">
<link rel="stylesheet" href="https://cdn.shopify.com/s/files/1/1004/3036/t/2/assets/owletcustom.css">
<link rel="stylesheet" href="https://cdn.shopify.com/s/files/1/1004/3036/t/2/assets/webfont-whitney.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdn.shopify.com/s/files/1/1004/3036/t/2/assets/app.js"></script>
<script src="https://cdn.shopify.com/s/assets/themes_support/option_selection-54fd013c3dd1f914fc3ca277900ec7c1.js"></script>
<script src="https://owletcare.myshopify.com/services/javascripts/currencies.js"></script>
<script src="https://cdn.shopify.com/s/files/1/1004/3036/t/2/assets/jquery.currencies.min.js"></script>
<p>A great About Us page helps builds trust between you and your customers. The more content you provide about you and your business, the more confident people will be when purchasing from your store.</p>
<p>Your About Us page might include:</p>
<ul>
<li>Who you are</li>
<li>Why you sell the items you sell</li>
<li>Where you are located</li>
<li>How long you have been in business</li>
<li>How long you have been running your online shop</li>
<li>Who are the people on your team</li>
<li>Contact information</li>
<li>Social links (Twitter, Facebook)</li>
</ul>
<p>To edit the content on this page, go to the <a href="/admin/pages">Pages</a> section of your Shopify admin.</p>

JavaScript

//<![CDATA[
      var Shopify = Shopify || {};
      Shopify.shop = "owletcare.myshopify.com";
      Shopify.theme = {"name":"Parallax","id":64978627,"theme_store_id":688,"role":"main"};

//]]>


  Currency.format = 'money_with_currency_format';


var shopCurrency = 'USD';

/* Sometimes merchants change their shop currency, let's tell our JavaScript file */
Currency.money_with_currency_format[shopCurrency] = "$ {{amount}} USD";
Currency.money_format[shopCurrency] = "$ {{amount}}";
  
/* Default currency */
var defaultCurrency = 'USD' || shopCurrency;
  
/* Cookie currency */
var cookieCurrency = Currency.cookie.read();

/* Fix for customer account pages */
jQuery('span.money span.money').each(function() {
  jQuery(this).parents('span.money').removeClass('money');
});

/* Saving the current price */
jQuery('span.money').each(function() {
  jQuery(this).attr('data-currency-USD', jQuery(this).html());
});

// If there's no cookie.
if (cookieCurrency == null) {
  if (shopCurrency !== defaultCurrency) {
    Currency.convertAll(shopCurrency, defaultCurrency);
  }
  else {
    Currency.currentCurrency = defaultCurrency;
  }
}
// If the cookie value does not correspond to any value in the currency dropdown.
else if (jQuery('[name=currencies]').size() && jQuery('[name=currencies] option[value=' + cookieCurrency + ']').size() === 0) {
  Currency.currentCurrency = shopCurrency;
  Currency.cookie.write(shopCurrency);
}
else if (cookieCurrency === shopCurrency) {
  Currency.currentCurrency = shopCurrency;
}
else {
  Currency.convertAll(shopCurrency, cookieCurrency);
}

jQuery('[name=currencies]').val(Currency.currentCurrency).change(function() {
  var newCurrency = jQuery(this).val();
  Currency.convertAll(Currency.currentCurrency, newCurrency);
  jQuery('.selected-currency').text(Currency.currentCurrency);
});

var original_selectCallback = window.selectCallback;
var selectCallback = function(variant, selector) {
  original_selectCallback(variant, selector);
 ...