Turn WordPress into an online booking system with StayPress

WordPress is more than just blogging software, it’s a very extensible and easy to use Content Management System- that happens to get amazing Google love.

Everyday, we come across new extensions that turn WordPress into the perfect vehicle for some niche business. It doesn’t always mean all of the bugs are worked out- since this is Open Source Software- but it does mean we have a good start on customizing a tool into exactly what a client needs. Right now, we’re about to start work on an orthodontist’s site, and this online booking system extension might come in handy! It’s not quite out yet- but the preview looks interesting. April 2011 it’s out- http://staypress.com/

Clearskys.net Blog Introducing StayPress
StayPress is a collection of plugins that will turn a standard vanilla installation of WordPress or WordPress MU into a property management and bookings system. Of course when I say Property, I actually mean any bookable resource of which there is a finite availability. So the StayPress system will be able to manage property rentals, hotel room rentals, conference rooms and centres, B and B’s, training rooms, bands, etc…

The new StayPress system takes over from the previous clearskys.net collection of plugins and brings everything together into a more manageable and co-ordinated group.

Whilst there will obviously be a downloadable version of the StayPress plugins, we are also planning a hosted version of the system for those who do not want the trouble of running their own website.

Of course, if you are working with The Next Wave, we would be happy to configure and set this up for you.

Continue reading →

Trouble in WordPress 2.5 land

It seems there is quite a bit of frustration with the new “Add media” controls in WordPress 2.5

The 2.5.1 update didn’t fix them- but, at this point, enough people have griped that the development team has to know they laid an egg with this part.

I just grabbed this whole post from the support site to give you the run down, the link at the bottom of the post is from someone who choses much more colorful language to describe his experiences-

WordPress › Support » Problems/steps backward with Add Media functionality
I was quite eager to try the add media functions in v2.5, but it seems either I am missing something or there are some fundamental problems.

Add Video
This seems fundamentally broken. I cannot believe that any user would expect that this would only create a link to a video rather than embedding the actual video. The only good news seems to be that using YouTubes embed code now works in a post without needing to use a plug-in like Easy Tube.

Add an Image
While this works–and the ability to upload multiple images is a plus–the interface to produce even basic functionality seems to have taken a step backwards. Case in point: I wanted to upload an image and have it right-justified with text wrapping around it. I had to go through no less than three dialogue boxes to achieve this.

Step 1: A box for uploading the image and adding ALT text.

Step 2: Requires the user to then click on Gallery for the ability to edit ALT text again, plus set image link, size and basic justification. I am not sure why this cant be rolled into the first step and I am not sure why all the options for justification cant be included here.

Step 3: In order to get the text to wrap, I then need to select the places image, click on the Image button, which pops up a dialogue box similar to what we had in the previous version, which gives the kind of control over the image that SHOULD be in Step 2. And, oddly, the justification selected in Step 2 is not reflected in this dialogue box.

With 2.5, its suddenly more clicks and LESS intuitive than it was before to perform a pretty basic use of an image in a post. It really does seem like at least one of these three steps could be eliminated. In the end, I can get what I want, but now its more involved than it used to be, with a workflow that is not at first obvious.

Add Audio/Add Media
I have not tried these yet, but fear that Audio will produce similar results to video. And its not entirely clear what “Add Media” is for. Flash content? Something else?

But my real issue is with video and these extra steps in just using simple images. Unless someone can show me that I am missing something here. Any help welcome.

If you follow the link, there are some good comments- including mention of the “Flexible Upload” plug in which we are about to start testing.

For the more colorful post- I can’t even post the link- go here.

Continue reading →

Posting Usable Code in WordPress With No Plugins

Due to the fact that Worpress decided to get rid of the “Press It” function until 2.6, I have recently had the need to post the code that will allow you to use the “Press It” feature on your own.

As it turns out, it is supposedly very hard to post code in WordPress. If you just copy and paste your code in, WordPress will turn your quote marks into “Smart Quotes”. They look pretty, but do not work with code. So I set about finding a plugin or some other method to correct this.

Everywhere I looked people were recommending different methods. From using plugins and custom fields, to manually editing, and to online converters. I tried them all, but they either didn’t display the code correctly, or messed up my formatting site wide.

So here is my solution, it may have been suggested before, but I sure couldn’t find it with hours of searching and testing. Simply insert this code into your style sheet:

pre {
width: 95%;
overflow: auto;
padding: 10px;
margin: 1em auto;
font-family: "Courier New", Courier, mono;
background-color: #ddd;
color: #555;
border: 1px dotted #999;
}

Now, when you paste your code into the WordPress editor, highlight it, and select the preformatted option from the “Format” drop down menu.

location of the format menu in the wordpress post editor

The pre tag will preserve your quote marks, spacing, indenting, and other elements.

And thats all you have to do. Your code will work when copied and pasted from the browser. If you have a long line of code, instead of running over everything, this will make a horizontal scroll bar to contain it.

Note: WordPress may apply separate <pre> tags to each line when you select it from the drop-down menu. (I have no idea why, it defeats the whole purpose of <pre> tags) To get around this, either manually add <pre> and </pre> before and after the text under the HTML tab in the edit screen, or apply the formatting with the code all as one line, and add the line breaks in afterward.

Continue reading →