Developer's Guide to Turning Clients Into Raving Fans
Apr 28 2017
Communication is Key
We’re no doubt all often reminded about the need to be good communicators, whether that communication is with clients, project managers, management team, or fellow developers. Frequent communication prevents small problems becoming big problems and provides those that need to know, insight into the progress of a project or ticket. There is one area, however, which I feel is often neglected, one group of people whose needs fall through the cracks - those of the site administrators. Here’s the problem, as I see it: At the outset of a new site build, there is generally a process where a business analyst, account manager, sales associate, or sometimes a designer, will lead a discovery process to figure out the scope of requirements for the site. The focus tends to be on the site’s end-users, whether they are consumers or contributors. Of course, there are times when a complex workflow needs to be scoped, a workflow that is required by the administrators or moderators, but it is generally accepted that administrators will use the default navigation and tools to manage the site. Typically, when the project gets to the development phase, we get to work building the site based on the user stories that have emerged from the discovery, with some Q&A to clarify items. We rarely take the opportunity to consider how the administrators will be using the site on a daily basis, and provide options that will make their jobs (and lives) easier. The same is true for ongoing support and development work. Taking the time to really listen to clients talk about how they are using the site, what their pain points are, and asking exploratory questions about how things can be made easier for them to deliver on their own requirements, can give massive returns in client loyalty and even an increase in work volume. For many clients, this can be as simple as adding a few of their most used links to the Shortcut menu, or creating a dashboard they are routed to after logging in, to give them a quick view of what is happening on the website. On sites with a large volume of content that needs updating by administrators, having bulk update tools can save hours (if not days!) of work manually opening and editing individual pages. These could be as simple as a customized Views Bulk Operations view, or as complex as a multi-page custom form with the resultant batch updates run on cron. As developers, we have a great deal more insight into how the site could work to make administration a lot easier, and all it takes is actively listening to how the client is using and needs to use the site, and creating some recommendations that will make their jobs easier. Let’s look at a few examples of simple things that make a big difference to administrators: Dashboards While it is possible, and sometimes recommended, to create your own for a project, Total Control Admin Dashboard for Drupal 7.x provides a compelling contributed option. If you do create your own, Panels is a great option since you can set role-based permissions for access, and further control access to functionality through individual panes. This is probably the recommended approach on Drupal 8. Content Operations If you don’t already do it by default, always include Admin Views for Drupal 7.x. This adds Views Bulk Operations to the existing admin views by overriding them with actual Views. The next step is to find out what kinds of operations administrators will frequently need to do, and provide easy options for them to do so. Modify the content admin view, for example, to create default filters, or expose additional filters that make sense for the administrators. Add columns with additional data from nodes, or quick links to a particular function on each row. For specific requirements, a custom View is a good option. In the case below, we needed a way to modify a taxonomy term on a set of nodes of a specific type - a little bit too specific to have administrators handle the change using the content admin view In this example, the View could be left as is, but note the exposed filter field "Nid". Here is an opportunity for improvement, that will have an actual impact on the time an administrator will spend working with this - an autocomplete or select that populates with the candidate nodes, so they do not need to hunt down the Node ID they need. Content Editing/Site Configuration While we’re considering ease-of-use for administrators, we start to get into the UX realm, and it becomes necessary to start thinking about how easy it is to digest information on a page and act on it. It is sometimes tempting to throw a content type together and not worry about the look and feel of the content form once it is done. The problem with this is, someone is probably going to need to use it. Maybe every day. Maybe multiple times a day. This can be particularly painful if the node type has a lot of fields. Here are a few things you can do to simplify node forms:- Hide textarea format information - there are modules that help with this
- Enable WYSIWYG editor on-demand per textarea
- Turn radio buttons into actual buttons (CSS/JS)
- Group fields into fieldsets, and collapse optional fieldsets to keep the form looking smaller
- Break the form into virtual multi-page forms or tabs with auto-save to prevent hardware damage due to user frustration - see Field Group
- Use Panels to lay fields out in a more visually-pleasing way.
Learn from us
Sign up and receive our monthly insights directly in your inbox!