Skip to content

Instantly share code, notes, and snippets.

@wormeyman
wormeyman / fcc-test-suite-eric-j.markdown
Created April 7, 2020 17:34
FCC: Test Suite - Eric J
load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,utils&ver=5.0.3:9 JQMIGRATE: Migrate is installed, version 1.4.1
load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43 Uncaught TypeError: this.activateMode is not a function
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43
at s (blocks.build.js?ver=1550101267:1)
at Function.ss (blocks.build.js?ver=1550101267:1)
at n._createModes (load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,heartbeat,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,postbox,wp-backbone,media-models,wp-p&load[]=lupload,wp-mediaelement,media-views&ver=5.0.3:43)
at n.initialize (load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,he
// Alert on Staging Site
// http://stackoverflow.com/questions/6522023/php-if-domain
$host = $_SERVER['HTTP_HOST'];
if ($host != 'XXXXXXXXXX.com') {
function staging_admin_error_notice()
{
$class = "error";
$message = "You are on the staging site.";
echo"<div class=\"$class\"> <h1>$message</h1></div>";
}
/* #Custom Styles
================================================== */
/* Change to red buttons. */
.swatch_options input:checked+.swatch-element {
border: 1px solid #e83e31;
background-color: #e83e31;
color: #ffffff;
@wormeyman
wormeyman / settings.json
Last active November 8, 2017 20:05
settings.json for VSCODE
{
"editor.rulers": [
80
],
"editor.tabSize": 2,
"editor.multiCursorModifier": "alt",
"editor.renderWhitespace": "all",
"editor.insertSpaces": true,
"editor.trimAutoWhitespace": true,
"files.trimFinalNewlines": true,
<?php
add_action( 'wp_enqueue_scripts', 'kale_child_enqueue_styles' );
function kale_child_enqueue_styles() {
$parent_style = 'kale-style';
$deps = array('bootstrap', 'bootstrap-select', 'font-awesome', 'owl-carousel');
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' , $deps);
wp_enqueue_style( 'kale-style-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') );
}
@wormeyman
wormeyman / mcm.html
Last active February 10, 2017 02:20
<h3 style="text-align: left;"><strong>I am hosting Mini Chef Mondays along with 4 fabulous bloggers, find out more about the <a href="https://www.courtneyssweets.com/mini-chef-mondays-team/" target="_blank">Mini Chef Mondays Team</a>!</strong>
<strong>Join our <a href="https://www.facebook.com/groups/1690162761238968/" target="_blank" rel="nofollow">facebook group</a> to find even more recipes and share recipes too!</strong></h3>
<div>
<div><strong><span>Get featured and follow us too!</span></strong></div>
</div>
<div>
<ul>
<li><span><a href="https://www.pinterest.com/courtneyssweets/mini-chef-mondays/" target="_blank" rel="nofollow">Pinterest</a>: Check out our Mini Chef Mondays board</span></li>
<li><span><a href="https://www.instagram.com/minichefmondays/" target="_blank" rel="nofollow">Instagram</a>: Use our hashtag #MiniChefMondays so we can repost your mini chef</span></li>
<li><span><a href="https://twitter.com/minichefmondays" target="_blank" rel="nofollow">Twitter
<span style="color:#cf1f28">THE TITLE ALL CAPS</span><br />
<span style="color:#cf1f28">Sunday &bull; Month DD &bull; 9:00 &amp; 10:45am</span><br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus vel finibus felis.
@wormeyman
wormeyman / Install.ps1
Last active August 29, 2015 14:18
http://Chocolatey.org packages to install.
$source = "https://gist.githubusercontent.com/wormeyman/60e716e197e724ce83a4/raw/a8c108c4915b0f214fad5e184f0180118da3fe06/packages.config"
$Filename = [System.IO.Path]::GetFileName($source)
$dest = "$env:TEMP\$Filename"
$wc = New-Object System.Net.WebClient
$wc.DownloadFile($source, $dest)
Start-Process cinst.exe -FilePath $dest -ArgumentList -y