Skip to content

Instantly share code, notes, and snippets.

@corsonr
corsonr / gist:0e0a4dfaacf59fdca314
Created October 20, 2014 13:20
WooCommerce: activate product tabs from URL
<?php
/**
* wc_direct_link_to_product_tabs
*
* Allows you to create custom URLs to activate product tabs by default, directly from the URL
* ex: http://mysite.com/my-product-name#reviews
*/
function wc_direct_link_to_product_tabs() {
if( is_product() ) {
?>
@jameskoster
jameskoster / functions.php
Created July 29, 2013 10:09
Mystile - Only display parent categories on homepage
add_filter( 'mystile_homepage_product_categories_params', 'homepage_parent_categories_only' );
function homepage_parent_categories_only( $params ) {
$params = 'parent="0"';
return $params;
}