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(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
uglify: { | |
build: { | |
//src: ['template/js/libs/*.js', 'template/js/libs/cloudzoom/*.js', 'template/js/crafted.js'], //input |
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
// Adds version to style sheet | |
// Source - Jason https://wordpress.org/support/topic/add-version-number-to-stylecss-in-custom-theme | |
function my_wp_default_styles($styles) | |
{ | |
//use release date for version | |
$styles->default_version = "20130711"; | |
} | |
add_action("wp_default_styles", "my_wp_default_styles"); |
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
<script charset="utf-8" src="http://js.hsforms.net/forms/current.js"></script> | |
<script> | |
hbspt.forms.create({ | |
portalId: '', // Update with default form hubspot form id | |
formId: '', // Update with default form hubspot form id | |
//target: '.hubspot', | |
validationOptions: { | |
validation: { |
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
/*================================================== | |
= Bootstrap 3 Media Queries = | |
==================================================*/ | |
/*========== Mobile First Method ==========*/ | |
/* Custom, iPhone Retina */ |
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 | |
//Look for cookie set by country select dropdwon | |
if(isset($_COOKIE['altairUniCountry'])){ | |
$showCntryID = $_COOKIE["altairUniCountry"]; | |
//Make the class lowercase | |
$showCntryClass = strtolower($showCntryID); | |
} | |
else{ | |
// Cookie is not set use these default values |
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
/* Moves the password notification box so it doesn't overlap the password input field*/ | |
.crafted .PasswordRequirements{position:relative;left:175px;} | |
.crafted .PasswordRequirementsContent:before{border:10px solid #333;border-bottom-color:transparent;border-top-color:transparent;border-left:0;content:'';left:-10px;position:absolute;top:22px;} | |
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
// https://moz.com/blog/how-to-stop-spam-bots-from-ruining-your-analytics-referral-data | |
// http://www.ohow.co/what-is-referrer-spam-how-stop-it-guide/ | |
4webmasters.org | |
trafficmonetize.org | |
semalt.semalt.com | |
webmonetizer.net | |
ranksonic.info | |
buttons-for-website.com | |
traffic2money.com |
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
domain, domain authority, spam score | |
https://www.youtube.com/, 100, 2 | |
https://wordpress.com/, 98, 0 | |
subdomain.wordpress.com/, 98, 0 | |
http://www.slideshare.net/, 97, 0 | |
https://www.etsy.com/, 94, 0 | |
http://graphicriver.net/, 80, 3 | |
https://creativemarket.com/, 62, 1 | |
http://bootstrapcreative.com/, 27, 1 | |
http://jacoblett.com/, 19, 0 |
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
Mandarin | |
Spanish | |
English | |
Hindi | |
Arabic | |
Portuguese | |
Bengali | |
Russian | |
Japanese | |
German |
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
<!-- shows united states and hides everywhere else --> | |
<a href="#" class="show-us">Show in United States</a> | |
<!-- shows in india and hides everywhere else --> | |
<a href="#" class="show-in">Show in India</a> | |
<!-- shows in china and hides everywhere else --> | |
<a href="#" class="show-cn">Show in China</a> |
OlderNewer