Any idea for when the plugin API will offer the functionality to let sorting by votes be included in the plugin?
Hoping “soon” is soon. 
I have added the required plugin API in discourse#7158 and used it in discourse-voting#38.
Sorry for taking me so long. 
This is awesome, sorting by votes is now an option, but is there any way to make it a category default through the plugin per OP?
The Wyze Wishlist appears to sort by votes by default, but I’ve not had time to dig through their page to see if they’re using another method.
With the voting plugin installed these are the two available options:

Did I miss a step?
You can add the option like this
<script type="text/discourse-plugin" version="0.8.25">
api.modifyClass('component:edit-category-settings', {
availableViews: Ember.computed(function() {
let views = this._super();
let voteView = {};
voteView["name"] = "Votes";
voteView["value"] = "votes";
views.push(voteView);
return views;
})
});
</script>
Seems like it would be a nice option to include in the plugin.
Thanks, that gets most of the way.
For some reason items in the extra-nav-item-outlet apply the active class to the list item rather than the link, so ‘Votes’ isn’t shown as active. Is that intentional?
I’ve created a CSS workaround for now, styling both .nav-pills>li.active a and .nav-pills>li a.active.
A post was split to a new topic: Topics that were voted on disappear from user profile after being closed
Hello Stephen,
Could you please assist in explaining where I need to place @awesomerobot 's code for my topics to be ranked by vote on my Boxes with Featured Topics desktop category page style?
Many thanks,
AGEID
そのコードをどこに配置すればよいか、@awesomerobot さん、教えていただけますか?
また、以下の設定を使用すると、「最新」タブが最新ではなく最も多くの投票を表示するようになり、最新のトピックがまったく表示されなくなることに気づきました。これはバグですか、それとも私の設定ミスですか?
デフォルトでは、カテゴリを投票数(降順)で並べ替え、ユーザーが希望に応じて最新順で並べ替えるオプションも利用できるようにしたいです。よろしくお願いします。
いいえ、それは意図したとおりに機能しているようですが、最良の体験ではありません。「トピックリストの並び替え」が「投票数」に変更された場合、それがまだ「最新」と呼ばれているのは混乱を招きます。
管理画面 → カスタマイズ → テーマの下にあるテーマの「Head」セクションに配置できます。
