View gist:6260468
This file contains 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 | |
/** | |
* start the customisation | |
*/ | |
function custom_woo_before_shop_link() { | |
add_filter('woocommerce_loop_add_to_cart_link', 'custom_woo_loop_add_to_cart_link', 10, 2); | |
add_action('woocommerce_after_shop_loop', 'custom_woo_after_shop_loop'); | |
} | |
add_action('woocommerce_before_shop_loop', 'custom_woo_before_shop_link'); |
View gf-countries-woo.php
This file contains 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 | |
/* | |
Plugin Name: GF Countries for WooCommerce | |
Plugin URI: https://gist.github.com/webaware/985156c48d8fea3cc77d9a9c624aad18 | |
Update URI: gf-countries-woo | |
Description: restrict Gravity Forms addresses to WooCommerce-allowed countries | |
Version: 2 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
View video.twig
This file contains 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
<video class="project-video" controls controlslist="nodownload" playsinline disablePictureInPicture | |
{%- if video.autoplay %} autoplay muted {%- endif -%} | |
{%- if video.preload %} preload="{{ video.preload }}" {%- endif -%} | |
{%- if video.loop %} loop {%- endif -%} | |
{%- if video.width %} width="{{ video.width }}" {%- endif -%} | |
{%- if video.height %} height="{{ video.height }}" {%- endif -%} | |
{%- if video.poster %} poster="{{ video.poster }}" {%- endif -%} | |
> | |
{%- for source in video.sources -%} |
View force-ssl-url-scheme.php
This file contains 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 | |
/* | |
Plugin Name: Force SSL URL Scheme | |
Plugin URI: https://gist.github.com/webaware/4688802 | |
Description: Force the protocol scheme to be HTTPS when is_ssl() doesn't work | |
Version: 1.0.0 | |
Author: WebAware | |
Author URI: http://webaware.com.au/ | |
@ref: http://wordpress.org/support/topic/ssl-insecure-needs-35-compatibility |
View bitbucket.js
This file contains 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
javascript:(function(){var style=document.createElement('style'),css=document.createTextNode('.refract-container .source{-moz-tab-size:4;tab-size:4;}');style.appendChild(css);document.getElementsByTagName('head')[0].appendChild(style);})(); |
View gist:4048580
This file contains 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 | |
// jQuery version of https://gist.github.com/3110728 | |
/* | |
-- the SQL database table | |
create table form_ajax ( | |
ID varchar(5) not null, | |
Name varchar(100), | |
Address varchar(100), |
View gist:d1b51f68977d32603491
This file contains 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
delete from u, um | |
using wp_users u | |
left join wp_usermeta um on um.user_id = u.ID | |
where u.user_login like '\_%' |
View gf-country-usa.php
This file contains 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 | |
/* | |
Plugin Name: GF Country USA | |
Plugin URI: https://gist.github.com/webaware/edba921af11f06bdfd5147bab806f591 | |
Description: change United States to USA in Gravity Forms addresses | |
Version: 2 | |
Author: WebAware | |
Author URI: https://shop.webaware.com.au/ | |
*/ |
View register-link-remover.php
This file contains 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 | |
/* | |
Plugin Name: Register Link Remover | |
Plugin URI: https://gist.github.com/webaware/11387141 | |
Description: remove the register link from the wp-login.php script | |
Version: 1 | |
Author: WebAware | |
Author URI: http://www.webaware.com.au/ | |
*/ |
View Makefile
This file contains 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
SRC := Brightscape.mov FUNK-instagram-mockup.mp4 | |
SRC_MOV := $(filter %.mov,$(SRC)) | |
SRC_MP4 := $(filter %.mp4,$(SRC)) | |
JPG := $(patsubst %.mov, out/%-vid.jpg, $(SRC_MOV)) $(patsubst %.mp4, out/%-vid.jpg, $(SRC_MP4)) | |
MP4 := $(patsubst %.mov, out/%.mp4, $(SRC_MOV)) $(patsubst %.mp4, out/%.mp4, $(SRC_MP4)) | |
VP9 := $(patsubst %.mov, out/%.webm, $(SRC_MOV)) $(patsubst %.mp4, out/%.webm, $(SRC_MP4)) | |
.PHONY: all jpg mp4 vp9 |
NewerOlder