You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice if it were possible (out of the box) if the used TagFields/GridFields that are used for Categories and Tags were configurable.
For example that you could config the Field that (Blog.php::162) uses to sort BlogTags (and BlogCategores) by another Field instead of static "Title"
I.e. for Compatibility with tractorcow/silverstripe-fluent.
The text was updated successfully, but these errors were encountered:
You could add an extension to modify the fields, since they're created in a beforeUpdateCMSFields callback they'll always be adjustable by extensions. Are you experiencing a particular problem with fluent in conjunction with this?
Already did this myself just wanted do open a Ticket to make a suggestion.
The problem is with how fluent rewrites Queries making Sorting currently breaking everything with it because of MYSQL error something along the lines of using DISTINCT and Sort when the Sort parameter no longer being in the Select. If Title is to be translated which in most cases it is.
I think this is fixed in fluent. Blog fields are extensible so you can adjust them if required. I'm not sure there's anything left over, but feel free to reopen if I've misunderstood.
Would be nice if it were possible (out of the box) if the used TagFields/GridFields that are used for Categories and Tags were configurable.
For example that you could config the Field that (Blog.php::162) uses to sort BlogTags (and BlogCategores) by another Field instead of static "Title"
I.e. for Compatibility with tractorcow/silverstripe-fluent.
The text was updated successfully, but these errors were encountered: