• Skip to primary navigation
  • Skip to main content
  • Home
  • Archives

divydovy

Just another human

  • Weekly photos – 2021
  • Contact Me

Archives

Hunted Store

November 8, 2011 by David Lockie

Hunted Store

This build used an off-the-shelf theme from Templatic to bring e-commerce to a new website for this local Brighton store. The theme’s design was customised by Jonathan Hall on behalf of zeroG media and I executed the site to meet the design and functionality. Result: a great-looking little store site.

Filed Under: portfolio Tagged With: e-commerce, templatic

ISS Food and Hospitality

November 7, 2011 by David Lockie

A very exciting project for probably my biggest client to-date. This project started right out at the concept and strategy stage, and I was really privileged to work again with Atelier Grafik on the design side of things, and for the first time Paul Allen of Lark Media to create the content and copy for the site. The site combines relatively straight-forward functionality with impactful design and carefully-crafted content to convey the organisation’s unique positioning within the marketplace.

Filed Under: portfolio Tagged With: child theme, complete-site-build, CSS, gravity forms, PHP, thematic, webfonts, wordpress

Directline Holidays Blog

November 5, 2011 by David Lockie

Directline Holidays blog

An exciting build for a household brand. The site was designed by Mark Brown and my job was to build the site as a WordPress blog ready to be installed at the /blog/ subdirectory. Nothing particularly difficult or unusual here, but a great looking site doing what WordPress does best.

Filed Under: portfolio, portfolio-featured

The importance of keeping WordPress (and plugins) updated

November 4, 2011 by David Lockie

It is very important that WordPress and any plugins and themes are kept up-to-date for several reasons:

  1. Security – this is the most important reason. WordPress is a huge target for hackers and other malicious online types – being able to hack WordPress means instant access to over 50 million websites and the ability to read their secure content, insert dodgy links or do other bad things. WordPress is continually identifying and fixing security risks and holes. These fixes are released as WordPress updates. If you don’t update your WordPress, you’re leaving known security risks in place, which means that sooner or later your site will probably be hacked. This could have serious impact on your business, as well as costing you time, effort and money to fix.
  2. Performance – the WordPress team put a lot of time and effort into making WordPress faster and more efficient. Keeping your WordPress updated means that your site is performing as well as it can.
  3. Features –  Major releases of WordPress typically include improved functionality and tools to allow you to get more from your site.
  4. User experience – Most updates to WordPress make the content management system quicker, easier and generally nicer to use, encouraging you to interact with your site more.
  5. Future-proofing –  at some point, you’re bound to want changes made to your site. Those changes might require the latest version of WordPress (for example to use a particular plugin that only works with newer versions). By updating frequently, you pick up small changes and errors that need to be attended to on an ongoing basis, keeping your site reasonably up-to-date with the core of WordPress development. If you don’t update for a year or two, you’re far more likely to suffer major disruption when you do, because all of those small and minor issues have become intertwined, making diagnosis and fixing harder and more time-consuming (and expensive).

These are the main reasons I can think of to keep WordPress updated, but there’s also a broader, more fundamental reason. Good Housekeeping. Why use the world’s leading publishing platform and then not keep it updated? It’s like buying a Mercedes and not getting it serviced. So: keep your WordPress installation up-to-date. It’s more than just software, it’s part of your business.

Filed Under: web Tagged With: maintenance, updating, wordpress

Thematic Snippet: Show full content / enable $more link in archives

October 3, 2011 by David Lockie

I can never find this incredibly useful snippet when I need it, so I’m blogging it.

If you child-theme Thematic, you’ll notice that archive and search results pages only return the excerpt rather than the full content. This snippet changes that to give your archive pages the full impact:

// Make sure thematic_content is always set to full to enable the more link
function childtheme_content($content) {
	if (is_home() || is_front_page()) {
			$content = 'full';
		} elseif (is_single()) {
			$content = 'full';
		} elseif (is_tag()) {
			$content = 'full';
		} elseif (is_search()) {
			$content = 'full';
		} elseif (is_category()) {
			$content = 'full';
		} elseif (is_author()) {
			$content = 'full';
		} elseif (is_archive()) {
			$content = 'full';
		}
	return $content;
}
add_filter('thematic_content', 'childtheme_content');

Hope someone else finds this useful!

Filed Under: web Tagged With: archives, content, PHP, snippet, thematic, wordpress

Brighton Noise

September 29, 2011 by David Lockie

For this site, I added jQuery datatables to allow quick and easy searching of gig listings.

Filed Under: portfolio

  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to page 5
  • Interim pages omitted …
  • Go to page 22
  • Go to Next Page »

Copyright © 2021 · Revolution Pro on Genesis Framework · WordPress · Log in