This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Displays archive pages if a speicifc template is not set. | |
* | |
* For more info: https://developer.wordpress.org/themes/basics/template-hierarchy/ | |
*/ | |
get_header(); ?> | |
<div class="content"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************* | |
/* COLORS MIXINS | |
/********************* | |
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,900') | |
$font-stack: 'Lato', Helvetica, Arial, sans-serif | |
/* Color */ | |
$orange: #EF7A23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form name="checkout" method="post" class="checkout woocommerce-checkout" action="http://www.viraone.com/checkout/" enctype="multipart/form-data"> | |
<div class="col2-set" id="customer_details"> | |
<div class="col-1"> | |
<div class="woocommerce-billing-fields"> | |
<h3>Billing Details</h3> | |
<span class="international">Outside Canada or the U.S.? <a href="mailto:[email protected]">Email us</a> to order.</span> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fireModal(){ | |
// Creates Modal window Markup | |
var modal = (function(){ | |
var | |
method = {}, | |
$overlay, | |
$modal, | |
$content, | |
$close; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Homepage | |
* | |
* Here we setup all logic and HTML that is required for the index template, used as both the homepage | |
* and as a fallback template, if a more appropriate template file doesn't exist for a specific context. | |
* | |
* @package WooFramework | |
* @subpackage Template | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/********************************/ | |
/* SHORTCODES */ | |
/********************************/ | |
/* COLUMNS */ | |
// [row] | |
function row_shortcode( $atts, $content = null ){ | |
return '<div class="row">' . do_shortcode($content) .'</div>'; |
NewerOlder