Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created December 3, 2018 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/b61b0a1b7649d36c05ebe94e5260042b to your computer and use it in GitHub Desktop.
Save leewillis77/b61b0a1b7649d36c05ebe94e5260042b to your computer and use it in GitHub Desktop.
Change the image size used in the feed
<?php
function filter_woocommerce_gpf_image_style( $style ) {
return 'shop_catalog';
}
add_filter( 'woocommerce_gpf_image_style', 'filter_woocommerce_gpf_image_style' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment