Rename the default filter
Type whatever name you’d to replace ‘default’ in the filter menu.
Type: Javascript
//Change Default Filter Name to Custom
var defaultFilterName = 'My Accounts';
// DO NOT EDIT ANYTHING BELOW THIS LINE
jq(function() {
jq('.filterOptions option[value="Default"]').text(defaultFilterName);
});