This thought just occurred to me as I glanced over a notification that came in on another thread ("...there does not seem to be a way of seeing exactly which layout is in action for a page, even by inspecting the code." Source)
What about a new little icon in the admin menu that either links to a separate page or has a little dropdown info pane with details about the current page you are viewing?
For example, all in one place, info (and potentially links to edit/adjust) about the:
- Layout used on this page
- Theme
- Content type
- etc.
That may be overkill but thought I'd throw it out there to see what people thought.
Recent comments
Just FYI, for field API date fields that use ISO format (basically a string), the resulting expression produced by the date_views_filter_handler_simple handler is DATE_FORMAT(STR_TO_DATE(...
Filter view on date
I think storing as timestamps would be the simplest and best way. Thanks for the help!!
Filter view on date
Yes, what I suspected. The core views filter handler for dates (views_handler_filter_date) can only handle UNIX timestamp sql columns. You'll either need to extend that filter handler to...
Filter view on date