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 $sections = carbon_get_post_meta( get_the_ID(), 'lk_section', 'complex' ); ?> | |
<?php if ( ! empty( $sections ) ): ?> | |
<?php foreach ( $sections as $section ): ?> | |
<section class="<?php echo esc_attr( $section['class'] ); ?>"> | |
<?php if ( ! empty( $section['lk_row'] ) ): ?> | |
<?php foreach ( $section['lk_row'] as $row ): ?> | |
<div class="<?php echo esc_attr( $row['class'] ); ?>"> | |
<?php if ( ! empty( $row['lk_column'] ) ): ?> |
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
$font-mdi : 'Material-Design-Icons'; | |
$mdi-prefix : 'mdi-'; | |
@font-face { | |
font-family: "#{$font-mdi}"; | |
src:url("#{$icons-font-path}#{$font-mdi}.eot?#iefix") format("embedded-opentype"), | |
url("#{$icons-font-path}#{$font-mdi}.woff2") format("woff2"), | |
url("#{$icons-font-path}#{$font-mdi}.woff") format("woff"), | |
url("#{$icons-font-path}#{$font-mdi}.ttf") format("truetype"), | |
url("#{$icons-font-path}#{$font-mdi}.svg##{$font-mdi}") format("svg"); |
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
{"_last_updated":"Tue, 12 May 2015 05:18:11 +0000","ID":"CF5551769e70a4b","name":"Payment Form","description":"","db_support":1,"pinned":0,"hide_form":1,"check_honey":1,"success":"Form has been successfully submitted. Thank you.","avatar_field":"","form_ajax":1,"custom_callback":"","form_visibility":"all","layout_grid":{"fields":{"fld_3223718":"1:1","fld_8431896":"1:2","fld_4376249":"2:1","fld_8317094":"2:2","fld_1340576":"3:1","fld_5857405":"3:2","fld_4079097":"4:1","fld_3162303":"4:2","fld_5246134":"5:1","fld_3820882":"5:2","fld_1823480":"6:1","fld_4866360":"6:2","fld_5451980":"6:2","fld_8097502":"6:2"},"structure":"8:4|6:6|6:6|6:6|6:6|6:6"},"fields":{"fld_3223718":{"ID":"fld_3223718","type":"html","label":"log_in_message","slug":"log_in_message","caption":"","config":{"custom_class":"","visibility":"public","default":"You must be logged in before making a purchase."},"conditions":{"type":""}},"fld_8431896":{"ID":"fld_8431896","type":"toggle_switch","label":"Login Or Register","slug":"login_or_register","ca |
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 | |
/** | |
* Range Control Class | |
*/ | |
class WP_Customize_Range_Control extends WP_Customize_Control { | |
/** | |
* @access public | |
* @var string |

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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
module.exports = function(options) { | |
var el | |
, a | |
, i | |
if (!options.tagName) { | |
el = document.createDocumentFragment() | |
} | |
else { | |
el = document.createElement(options.tagName) | |
if (options.className) { |
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
/////////////////////////////////////////////// | |
////// GRAVITY FORMS RESET STYLES ////// | |
/////////////////////////////////////////////// | |
// These styles are made in mind to be used with SCSS or LESS | |
// If you use these styles, you must go to the Gravity Forms settings in the WordPress back end and set Output CSS to No. | |
////----- Core Containers | |
.gform_heading, | |
.gform_body, |