The original question had to do with enabling or disabling the table sorter function at the table level as well as the global level. I believe we have covered the global, but I also didn’t see an answer for how to do this on a table-by-table basis.
I believe this information will be helpful:
Assuming you have the global table sorter function enabled (Settings -> Easy Table Creator -> “Use Tablesorter”), you can disable the sorting feature for an individual table. This can be done while preserving the color scheme as well!
1. In your page or post, change the view from the Visual editer to the HTML editor.
2. Locate the beginning of the table in question. You should see some code like this:
<table class="easy-table-creator tablesorter" style="width: 100%;">
<thead></thead>
3. Remove the word “tablesorter” from the class tag, but leave the <thead> section. In this case it is blank because I did not have a header.
That should be all there is to it! I found that without the <thead> tags my table did not format correctly. There may be a way around that, but it didn’t bother me enough to search any deeper. The result is a pretty table with alternating colors and no sorter. Additionally, you can still have a header with content if you wish, but just remove the “tablesorter” verbiage and you will be set.