View euchre-cards.js
const cards = [ | |
'A', | |
'K', | |
'Q', | |
'J', | |
'10', | |
'9', | |
]; |
View st3-fnr-xhtml
# find all image elements replace the end with a trailing slash | |
find: <img(.*?)> | |
replace: <img\1 /> | |
# find all input elements replace the end with a trailing slash | |
find: <input(.*?)> | |
replace: <input\1 /> | |
# take all instances where extra / was made and trash it | |
find: / /> |
View random-placement
PlaceImages: function(galH, galW) { | |
// galH and galW are specified width/height | |
// either input in the function or could use width/height of gallery | |
var gal = $('.hp-gallery-images'); | |
var imgs = $('.hp-gallery img'); | |
imgs.each( function (index, el) { | |
var randNum_T = Math.round(Math.random() * galH); | |
var randNum_L = Math.round(Math.random() * galW); |
View wc_checkout_params
<script type='text/javascript'> | |
/* <![CDATA[ */ | |
var wc_checkout_params = {"ajax_url":"\/maxbuttons\/wp-admin\/admin-ajax.php","ajax_loader_url":"\/\/localhost:8888\/maxbuttons\/wp-content\/plugins\/woocommerce\/assets\/images\/ajax-loader@2x.gif","update_order_review_nonce":"769c6b66f9","apply_coupon_nonce":"13a129c0bc","option_guest_checkout":"yes","checkout_url":"\/maxbuttons\/wp-admin\/admin-ajax.php?action=woocommerce_checkout","is_checkout":"0","session_expired_message":"<div class=\"woocommerce-error\">Sorry, your session has expired. <a href=\"http:\/\/localhost:8888\/maxbuttons\" class=\"wc-backward\">Return to homepage<\/a><\/div>"}; | |
var wc_checkout_params = {"ajax_url":"\/maxbuttons\/wp-admin\/admin-ajax.php","ajax_loader_url":"\/\/localhost:8888\/maxbuttons\/wp-content\/plugins\/woocommerce\/assets\/images\/ajax-loader@2x.gif","update_order_review_nonce":"769c6b66f9","apply_coupon_nonce":"13a129c0bc","option_guest_checkout":"yes","checkout_url":"\/maxbuttons\/wp-admin\/admin-ajax.php?action=woocomm |
View htaccess-bits
<IfModule mod_deflate.c> | |
# compress text, html, javascript, css, xml: | |
AddOutputFilterByType DEFLATE text/plain | |
AddOutputFilterByType DEFLATE text/html | |
AddOutputFilterByType DEFLATE text/xml | |
AddOutputFilterByType DEFLATE text/css | |
AddOutputFilterByType DEFLATE application/xml | |
AddOutputFilterByType DEFLATE application/xhtml+xml | |
AddOutputFilterByType DEFLATE application/rss+xml | |
AddOutputFilterByType DEFLATE application/javascript |
View rrssb-counts
<?php | |
require("share-count.php"); | |
// grab current url by site, then inner page | |
$url = site_url() . $_SERVER['REQUEST_URI']; | |
// get page title and sanitize | |
$title = get_the_title(); | |
$clean_title = str_replace(' ', '%20', $title); |
View xml-popcard-GF-integration
function submit_contact_reserve_lead($entry){ | |
$date = date('Y-m-d\TH:i'); | |
$baseURL = 'http://interface.webservices.popcard.ltsolutions.com/service.asmx/InsertTraffic?strRequestXML='; | |
$xmlRequest = ' | |
<traffic contactdatetime="' . $date . ':00" transactiondatetime="' . $date . ':00"> | |
<trafficsource> | |
<vendorid>28e30c94-b263-49c5-b190-551d12d8a1de</vendorid> | |
<emailaddress>Laurel006@myLTSMail.com</emailaddress> | |
<propertyname>The Laurel</propertyname> |
View gallery-id-grabber
// into template or another filter i suppose | |
$pattern = get_shortcode_regex(); | |
if( preg_match_all( '/'. $pattern .'/s', $post->post_content, $matches ) | |
&& array_key_exists( 2, $matches ) | |
&& in_array( 'gallery', $matches[2] ) ): | |
$keys = array_keys( $matches[2], 'gallery' ); |
NewerOlder