Skip to content

Instantly share code, notes, and snippets.

View emzo's full-sized avatar

Emyr Thomas emzo

View GitHub Profile
@mikejolley
mikejolley / gist:5511eb1fddace7606193
Created February 22, 2016 10:34
Simple Global Attribute Size Switcher for WooCommerce Variable Products
<?php
/**
* Show the size switcher.
*/
function size_switcher_display() {
global $product;
echo '<div class="wc-size-switcher">';
echo __( 'Display sizes as:', 'woocommerce-size-switcher' ) . ' ';
@mikejolley
mikejolley / gist:57034501e74ff552dce9
Created February 15, 2016 11:56
Show category name in shop loops
// code added to theme functions.php file
add_action( 'woocommerce_after_shop_loop_item', 'show_product_category_name' );
function show_product_category_name() {
global $post;
echo get_the_term_list( $post->ID, 'product_cat' );
}
@mikejolley
mikejolley / gist:485d52994a7643f799fa
Last active May 27, 2016 22:07
Add product tag and category classes to loops + post classes
/**
* Code placed in theme functions.php
*/
add_filter( 'post_class', 'wc_product_tag_post_class', 20, 3 );
function wc_product_tag_post_class( $classes, $class = '', $post_id = '' ) {
$tags = get_the_terms( $post_id, 'product_tag' );
if ( ! empty( $tags ) ) {
foreach ( $tags as $key => $value ) {
$classes[] = 'product-tag-' . $value->slug;
@claudiosanches
claudiosanches / wc-remove-billing-fields.php
Created January 27, 2016 02:07
WooCommerce - Remove billing address, fone and company fields
<?php
/**
* Plugin Name: WooCommerce Remove billing fields
* Description: Remove billing address, fone and company fields from WooCommerce checkout.
* Author: Claudio Sanches
* Author URI: https://claudiosmweb.com
* Version: 0.0.1
* License: GPLv2 or later
*/
@davatron5000
davatron5000 / the-state-of-element-container-queries.md
Last active August 23, 2023 15:43
The State of Element/Container Queries

The State of Container Queries

tl;dr Developers would like the idea to style components based on a parent's width rather than depend solely on the viewport media query. This would allow modular components to style themselves while being agnostic to the viewport.

There is currently a lot of developer interest in getting a feature like Container Queries (née "Element Queryies") shipped in a browser.

2-min Catchup

Here are official'ish documents to outline the developer community's desires.

@zombience
zombience / post-commit.py
Created December 29, 2015 00:48
simple python post-commit hook for slack subversion integration
#! /usr/bin/python
#############################################################
# add a new integration and generate a new token before using with new repo
# https://your_team_name.slack.com/apps/manage/
#############################################################
import os
import sys
@veselosky
veselosky / s3gzip.py
Last active August 29, 2024 11:32
How to store and retrieve gzip-compressed objects in AWS S3
# vim: set fileencoding=utf-8 :
#
# How to store and retrieve gzip-compressed objects in AWS S3
###########################################################################
#
# Copyright 2015 Vince Veselosky and contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
@mikejolley
mikejolley / functions.php
Created September 29, 2015 07:41
WooCommerce - Disable the non-admin access to dashboard feature
<?php
// Add the below line to your theme functions.php file
add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
@paulirish
paulirish / what-forces-layout.md
Last active April 3, 2025 02:13
What forces layout/reflow. The comprehensive list.

What forces layout / reflow

All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.

Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.

Element APIs

Getting box metrics
  • elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent
@mikejolley
mikejolley / ipn-test.php
Last active September 5, 2024 01:54
Quick snippet/plugin/dropin to test IPN support
<?php
/**
* Plugin Name: PayPal Sandbox IPN Tester
* Description: Pings the IPN endpoint to see if your server can connect. Just head to <a href="/?ipn-test=1">yoursite.com/?ipn-test=1</a> whilst logged in as admin.
* Version: 1.0.0
* Author: WooThemes
* Requires at least: 4.1
* Tested up to: 4.3
*/
if ( ! defined( 'ABSPATH' ) ) {