Created
July 21, 2016 02:01
-
-
Save nayemDevs/4b1c07ac6786ff83b8155fbbbca19c1d to your computer and use it in GitHub Desktop.
Image thumbnail on store-list page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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