Tag Archive for wordpress

Liveblog plugin from WordPress

Automattic, the people behind WordPress have released a live blogging plugin for those of you who are using the self-hosted version of the platform.

The plugin, unsurprisingly called Liveblog, does exactly what you would expect and seems to do it very well and very simply. Granted it does’t have all the bells and whistles of some of the, now paid for platforms live Coveritlive, but for a blogger who wants to live blog an event it is perfectly adequate for the job.

Once you have installed and activated the plugin all you need to do is create a new post and tick the box in the live blog widget on the post page, press publish and your Liveblog is running.

If you go and view the post logged in users will see a text entry box

all you need to do is type your update in to the box and press the Publish Update button and your entry is live on the page, viewers of the live blog will see your entry without the need to refresh the page.

Want to add an image? No problem, simply drag it in to the text entry box and press publish.

All in all it is a nice little plugin that does enough for most Hyperlocal bloggers and probably even more serious live bloggers.

One word of warning, I have seen a report of people losing the whole text of a live blog by going and editing the post. It seems that WordPress have confirmed that this is a bug and is being worked on, so given the way WordPress devs work, it should be fixed very soon and in my opinion it shouldn’t stop you using it, just remember to not edit the live blog post!

Official Facebook plugin for WordPress

I spotted this yesterday in the WordPress plugin repository, http://wordpress.org/extend/plugins/facebook/ the official Facebook WordPress plugin.

I’ve not had time to play with it properly but it looks like it takes over the comment management of your WordPress blog and replaces it with the Facebook comment system.  Read more

Talk About Local training at Peabody’s Pembury Learning Centre

Sundial Centre Shipton Street

Last week William and I delivered another Talk About Local training session for the Peabody Trust at the Pembury Learning Centre in Pembury Estate, Hackney, which is already served by its own hyperlocal website pemburyliving.wordpress.com.

There was a mix of staff, volunteers and residents present all looking to do different things – some already had a website they were looking to develop, some were looking to create something new entirely, whilst others were looking to contribute to an existing website like Pembury Living. This variety meant the session became one of collaborative learning rather than a traditional training scenario, with everyone sharing their knowledge and experience with others in the group.

One of the people I worked with was Mark, who had created a WordPress website for the Sundial Centre for elderly and disabled people in Bethnal Green and was looking to widen its reach via online networks as well as using offline methods. I later interviewed Mark, starting by asking him what the website is used for:

Everything and anything that’s to do with the local community. At the moment, it’s mainly centralising on the centre itself but now we are just starting to go out into including the local community in the posts. And we’ve got a ‘post our plans’ soon by foot messenger, sending leaflets around the local community.

Mark created the WordPress website two months ago, saying, “It took a while getting used the terminology but once you do it’s quite basic.” Since then he’s developed the website to include centre and community news, details of the centre’s Community Cafe and clubs such as Writers United, an online copy of the Sundial Newsletter and the rather brilliant feature that is Character of the Month:

All it is, quite simply we pick people totally unexpectedly and we profile them. We do an interview with them just as you’re doing with me and we quite simply take a photo, put it online, call it Character of the Month. Each month we will do one. Usually we try to pick somebody you don’t expect to have some unusual quirks or backgrounds…The last character we had was Stephen, who’s for May…he was actually a singer and he used to do Tom Jones, Elvis and all those back in the seventies. So, there’s quite a few characters we’re meeting in the centre.

During the training session I helped Mark create and get going with the Twitter account @sundialcentre and integrate this with the WordPress website. I asked Mark how he’d found the learning curve:

It’s good fun…awkward at first, but then it’s the same as most things to do with the blog, once you get used to the terminology and the phrases they actually use, so how different they are from the normal spoken word…once you get used to the phrasing it’s fairly logical. It’s a logical process…. I’ve got a feeling we’ll be flying in a week or so.

It will certainly help to widen the reach of us at the moment. The longest range that we have at the moment is we’ve got one follower in Montreal and we’ve got a few up on the borders of England and Scotland. But we’ll widen it even further, the further the better, I don’t mind!

Sundial Centre photo slip

Mark can see himself using other social networks to help widen the reach of the website but is careful not to run before he can walk:

I’ll probably use Facebook as well and experiment with others, just see how they go. But I don’t want to add them too quickly because you can only learn a certain amount at a certain time and I don’t want to jump in with both feet and find that I’m drowning when I can just survive with one foot in the water!

Mark was set to be busy with the blog straight after our session to update it with photos of the centre’s Jubilee Party, some taken by him and some taken by his ‘spies’:

They all know me now, everyone around the centre has come to know me as I’ve always got a camera around my waist. But I’ve got a couple of spies in there now with a couple of cameras – I’ve planted spies! We’ve got an unspoken agreement really that we won’t put up anything up that anyone’s going to be embarrassed about or would cause a problem.

Mark finds that photos are a great way of engaging people with the website:

We also give out a little ticket to anyone that we take a photo of, so: ‘You’ve had your photo taken for your local blog’ and it’s also got the details of how to find the blog. Because most of our clients in the centre are elderly, so what it is they go home and: “Oh, we’ve had our photo taken for a blog – what’s a blog?!” And they give this slip to their family and the family will bring it up on their computer so that actually increases the spread.

To see how Mark further develops the website and its presence on online networks follow sundialshipton.wordpress.com and @sundialcentre on twitter. To hear my full interview with Mark, listen to the audioboo below:

Adding Tables To A Post

We occasionally get asked about how to create tables in posts like this

column 1 Coumn 2 column 3
row 1
row 2
row 3
row 4

It is easier than it looks, you could create your table in your favourite word processing package and just copy and paste it in to your blog, but this will probably give you some strange results with fonts & text sizes that may break in different browsers.

The more elegant solution is to create the table manually so you get just the bits of code you need.

Unfortunately there is no easy way to do this in the in built editor on a wordpress.com site so you have to hand craft the code, but don’t panic this is not as daunting as it sounds.

To create the table above I used this HTML code:

<table width=”90%” cellspacing=”0″ cellpadding=”0″>
<tr>
<td>column 1</td>
<td>Coumn 2</td>
<td>column 3</td>
</tr>
<tr>
<td>row 1</td>
<td></td>
<td></td>
</tr>
<tr>
<td>row 2</td>
<td></td>
<td></td>
</tr>
<tr>
<td>row 3</td>
<td></td>
<td></td>
</tr>
<tr>
<td>row 4</td>
<td></td>
<td></td>
</tr>
</table>

 

To get it to work and so the code does not look like it does above, you must paste it in to the HTML tab of the create / edit post or page window. If you don’t then you will just see the code as it is above rather than the table at the top of the page.

A bit of information about the code to help you understand it better and to help you adapt it for your requirements.

<table width=”90%” cellspacing=”0″ cellpadding=”0″> <- this sets your table up to be 90% of the width of the page with no spacing or padding around the cells.

I always make the table less than the width of the page as it looks nicer, make sure you use a % and not pixel width. Pixel (a number without the %) is a set width and if you change your theme at any time the width of the table could be bigger than the width of the page and it will break and look ugly.
<tr> <- this tells the table it is a new row
<td> <- this creates a new column, what you put in here will show up in the first cell as long as it is before this -></td>
</tr> <- this closes the row

All you do is repeat the code for each row you need.

The number of columns on each row needs to be the same other it will start to cause problems.

Feel free to copy, adapt and use the bit of code above or you could ask Google to find you a HTML Table Generator.

You can of course go it to great detail with your tables and set rows to different heights or columns to different widths, add padding etc. You can find out how to do this by asking google

WordPress 3.3

If you run a self hosted (wordpress.org) site, this morning you will be able to upgrade to the latest version 3.3.

Some of the new features are:

Better dashboard menus, these just fly in and fly out on mouse over now, rather than having to click on each heading to see the sub menu.

Smarter Admin bar, more in keeping with the new look wordpress.com version

Drag & Drop File Upload, no browsing for files any more, no just drag them and drop them in to the upload area and off they go. File type detection is also built in.

Widgets no longer go AWOL when you swap themes

Tumblr has been added to the import list

Co-editing posts, the post now unlocks as soon as it has been saved. If you have a number of contributors on your site, how many times have you spotted a typo on a new post but not been able to edit it because it is locked? Well now as soon as a user comes out of a post it will be unlocked so you can edit it, instead of waiting for wordpress to remember to unlock it.

I have upgraded a couple of blogs this morning and all seems well and I’ve not come across a plugin that has failed after this upgrade (yet!)

  • Newsletter sign up

  • New posts sign up