Skip to content

Instantly share code, notes, and snippets.

@nayemDevs
Created July 21, 2016 02:01
Show Gist options
  • Save nayemDevs/4b1c07ac6786ff83b8155fbbbca19c1d to your computer and use it in GitHub Desktop.
Save nayemDevs/4b1c07ac6786ff83b8155fbbbca19c1d to your computer and use it in GitHub Desktop.
Image thumbnail on store-list page
<?php
// Change store thumb size in store listing page
add_filter( 'dokan_store_list_args', 'change_store_list_thumb_size' );
function change_store_list_thumb_size( $args ) {
$args['image_size'] = 'full';
return $args;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment