Skip to content

Instantly share code, notes, and snippets.

@DevinVinson
DevinVinson / gist:7175338
Created October 26, 2013 22:32
Custom page template for Enfold
<?php
/*
* Template Name: Example Custom Template
* See the codex entry on custom template for more information: http://codex.wordpress.org/Page_Templates#Custom_Page_Template
*
* Add html above or below the_content inside the comments
* Add php snippets as well with their own opening and closing php
*/
global $avia_config, $post;
@DevinVinson
DevinVinson / Unset woocommerce gateway for specific country
Created August 15, 2013 04:53
Remove woocommerce gateways for $country, remove gateways for anything else
function lk_aussie_gateways( $available_gateways ) {
global $woocommerce;
if ($woocommerce->customer->get_country() == 'AU') {
unset( $available_gateways['cod'] );
}
return $available_gateways;
@DevinVinson
DevinVinson / gist:6238339
Created August 15, 2013 04:49
Function based on this topic http://wordpress.org/support/topic/restrict-payment-options-based-on-product Small changes and fix to get the function to loop through all categories
/**
*
* Filter gateways on specific category ID
*
**/
function filter_gateways($gateways){
@DevinVinson
DevinVinson / cart-on-checkout
Created March 31, 2013 15:32
Add the woocommerce cart on top of the checkout page.
// Add Cart to Checkout //
add_action( 'woocommerce_before_checkout_form', 'lk_show_cart', 5 );
function lk_show_cart()
{
global $woocommerce;
?>
<form action="<?php echo esc_url( $woocommerce->cart->get_cart_url() ); ?>" method="post">