Skip to content

Instantly share code, notes, and snippets.

@lmartins
Forked from corsonr/gist:3ac30cc334cf344dbb3b
Last active August 29, 2015 14:07
Show Gist options
  • Save lmartins/c84fc899832cf7b560b7 to your computer and use it in GitHub Desktop.
Save lmartins/c84fc899832cf7b560b7 to your computer and use it in GitHub Desktop.
Change related products thumbnail size
<?php
add_filter( 'wp_head' , 'related_products_style' );
function related_products_style() {
if( is_product() ) :
?>
<style>
.woocommerce .related ul.products li.product, .woocommerce .related ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .upsells.products ul.products li.product, .woocommerce-page .upsells.products ul li.product {
width: 24% !important;
}
</style>
<?php
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment