Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nayemDevs/032166873934c3402421a8ab4cd87f93 to your computer and use it in GitHub Desktop.
Save nayemDevs/032166873934c3402421a8ab4cd87f93 to your computer and use it in GitHub Desktop.
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