Pages
Categories
Archives
Another event which is on the same day… quelle desastre.
Title: Another event which is on the same day… quelle desastre.
Location: tbc
Link out: Click here
Description: coming soon
Start Date: 2011-10-30
End Date: 2011-12-01
Posted in News Leave a comment
this is an event
Title: this is an event
Location: SW1V 4AX
Link out: Click here
Description: hello world
Start Time: 08:30
Date: 2011/11/01
End Time: 18:00
Posted in News Leave a comment
how to auto refresh the stylesheet when developing in wordpress
I regularly use various caching plugins when developing on clients websites, and i’ve found it a bit of a pain when making edits to the css when they don’t immediately show up on browser refresh, for whatever reason.
For that reason I have a couple of bits of code I use to ensure that the css is ‘fresh’ each time, both of which work by appending a random id to the end of the css uri.
hence http://…/yourthemefolder/style.css
becomes
http://…/yourthemefolder/style.css?id=345 or whatever random number is selected.
There’s two types of code… one when the stylesheet is regularly accessible in the header for you to edit, simply append the following to the css url:
?id=<?php echo rand(1,1000); ?>
which when implemented would look like this:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>?id=<?php echo rand(1,1000); ?>" type="text/css" media="screen" />
and the other is when, as with a lot of more recent themes, you need to use a filter to access the stylesheet uri (you need to stick this in your theme’s functions.php file if you’re not sure what to do with it!):
add_filter('stylesheet_uri','wpi_stylesheet_uri',10,2);
function wpi_stylesheet_uri($stylesheet_uri, $stylesheet_dir_uri){
$random = rand(1,1000);
return $stylesheet_uri.'?id='.$random;
}
Hope this helps someone out there!
AMH Air Conditioning Installations
Just started working on a new project for AMH Air Conditioning Installations. The project is to build them a new WordPress website / theme, and then do some advanced SEO for them, right from helping to select the keywords and domain name through to creating unique content for their website / blog on a regular basis. AMH have been doing Air Conditioning Installations for some time, but have yet to manage to rank highly for relevant search terms and so they decided it was time to do something about it. Watch this space for results!
Posted in News Leave a comment
Just launched: UK Commission for Employment and Skills
I’ve been working on the launch of the 2010 Review website for a couple of months now and am very excited to see it go live.
It’s a WordPress website with a twist: UK Commission for Employment and Skills, the client, wanted forum functionality on the site so that people could engage in discussions in a more structured manner than traditional blog comments permitted. After a bit of research into the best solution I hit on Buddypress, the plugin which turns WordPress into a private social network. One of the many social modules available within Buddypress is forums, so I used that.
Actually integrating Buddypress into your theme can be done using another plugin, but instead I opted to code the theme as a child theme of Buddymatic which is a port of the excellent Thematic theme framework.
In addition to the forums, the site has some additional custom php coding, for example we’re created a special ‘library’ page which features thumbnails of all posts with a specific tag which is updated on the fly.
Posted in Showcase, Wordpress Tagged 2010review, buddymatic, buddypress, thematic, ukces, Wordpress Leave a comment
Brandy puts Climpsons Coffee online
E-commerce website for a local cafe and coffee roastery based in Broadway Market. The website was designed & built on the popular WordPress publishing platform, providing the client with an easy to use interface for updating their own store.
Whereas the site currently only features about 10 products, there is scope for unlimited products should the client chose to expand their range. In addition to the design & build, I provided SEO consultancy to help the client choose their keywords, and then optimised the site for a range of terms.
The site ranks highly in search engines for all the chosen keywords, and is already generating high levels of organic search traffic. This resulted in the first sale of coffee within days of launch and a very happy client.
Posted in Showcase Leave a comment
Find and replace on WordPress
I’d built the WordPress website, was ready for launch, and re-pointed the domain only to find.. shock, horror, every single image on the site was broken. Without going into the ins and outs of why the Windows hosting solution had cocked things up, I needed a solution and quick.
10 minutes of searching found me the Search Regex plugin and it is a thing of beautiful simplicity, allowing you to carry out ‘find and replace’ commands across your entire WordPress content.
So within 30 seconds of install I’d been able to update all of the image paths on every post and page, and my site was fixed. Bingo bango.
Announcing the launch of free WordPress theme Pressy
Here’s my latest free WordPress theme release: Pressy, a social bookmarking theme for people who spot and share great finds online. It’s a child theme for Thematic, so is lightweight, flexible and SEO friendly out of the box.
Full details, demo and download here, chuck any feedback, comments or questions in the comments below. Me hopey you likey!
Posted in Web Design Tagged free wordpress theme, pressy wordpress theme, thematic child theme Leave a comment
Twitter lists widget demo
I’ve been playing around with Twitter lists for the past couple of days, and (once Tweetdeck finally integrates with them) they will be a useful tool.
I’m starting to build a social media twitter list, and in doing so found this little widget on Twitter that you can use to embed your list posts directly into your website. I’ve put it here in a post for now, but in the next few weeks will integrate it into a sidebar so it’s visible on all pages. Read More
Posted in News Leave a comment






