Created
June 23, 2016 06:44
-
-
Save nayemDevs/032166873934c3402421a8ab4cd87f93 to your computer and use it in GitHub Desktop.
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
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