Rss Feed
Tweeter button
Facebook button
Technorati button
Reddit button
Myspace button
Linkedin button
Webonews button
Delicious button
Digg button
Flickr button
Stumbleupon button
Newsvine button

Web Design

Opencart v1.4.0 – It just gets better and better

Opencart v1.4.0 has been released and is available to download here.

First off lets review the store front. This continues to improve and has definitely done so with this new release, it is probably now the prettiest cart out of the box! For those without the skills or time to change the template it offers a good look to simply start selling…it hardly needs any setting up and is simply thebest option for any online selling noobs out there. It does however give a wealth of functionality and flexibility for the more expert user but i digress. Being a ‘designer’ (perhaps not a very good one) the overall look is a bit young and cartoony for me, I dont like all the little icons and never have, these are easy to get rid of if you want to however. On the plus side the new drop down boxes for currency and language are cool and a nice improvement. Overall its very neat and tidy; a great platform to sell from.

OK lets review the admin side (user: demo password: demo). This is the area that has seen the most change. It now spans your screen instead of being fixed width and has a much more professional look. The menu bar is very nice with its see through dropdown list although it sometime does take a few mouse hovers to get the dropdown to actually drop (I noticed this in previous versions too and may be an Internet Explorer thing). The functionality has been improved and my quick whiz through the admin screens shows me a higher level of control to the administrator and the improved layout makes it so much easier and intuitive to work with. The admin really is a marked improvement from the previous version and as usual has great out of the box functionality, with Google Base, Sitemap and Talk all ready to blast off! Oh yeh and there is a neat new advanced search feature, plus the initial search allows users to search via category…..awesome!!

Code and database wise Im not sure what has changed as yet, I havent had a chance to delve that deeply, however as far as Ive seen people have upgraded and reuploaded their database without any problems.

I think Opencart is fantastic and will be huge like Magento (eventually). The one area that has to be improved upon to capture more users is the upgrade/module system. If there could be a more Wordpress-like automatic upgrade of core files, database and modules that would just be incredible and Im sure Opencart would take over the world and become a leader in its field! For now though Im just happy to be a small part of it and shall contribute anyway I can. As should you, if you download this free software why not contribute something to the cause, donate some money, write a review, link to the site and moan at your host to setup an auto install feature for Opencart.

Please let me know what you think of the new Opencart v1.4.0 below:

  • Share/Bookmark
2 Comments more...

Using multiple/different headers, sidebars, footers and comment templates in Wordpress

Once you start messing about with Wordpress and looking to expand it to fit your websites requirements you will undoubtably want to use different headers, sidebars, footers and even comment templates.

Its actually really easy to do in Wordpress and because you will be utilising files that should already exist in your template, it doesnt take long at all.

I guess most people will want to change the sidebar first, implementing new menus i.e. floating it left or right to create different page styles etc, so I will focus on sidebars but applying the principles will work for every template file mentioned above.

OK lets get started.

First create a new template file called called ’sidebar2.php’ or similar and open ‘the original ’sidebar.php’. Copy the code from sidebar.php and paste it into sidebar2.php. Now you have a new sidebar! Obviously you will want to make changes to the structure using CSS etc but I will leave that up to you.

Now that we have the new sidebar2.php file how to we get Wordpress to display it? Just replace this line:

with this one:

You would use this line to include all your new files i.e.

or

However getting the new comment template to display is slightly different. You must replace this line:

with this one:

Well there you have it, you can now create as many different template files as you want and implement them on your Wordpress site. Sweet!

Join the forum discussion on this post - (1) Posts
  • Share/Bookmark
Leave a Comment more...

Page Templates in Wordpress

I realise this is a very simple thing to achieve in Wordpress and has probably been written about a thousand times, however I thought about what a great tool it is in Wordpress’s arsenal and surprisingly not used on too many sites Ive seen.

Aside from being able to use page templates to create different page designs they are very useful when using Wordpress plugins such as NextGen Gallery and SimplePress Forum.

These two plugins benefit greatly from using a full width page template i.e. no sidebar. So I will not go into the full intricacies of page templates and their many uses and implementations. Instead I will just show a simple example of how to create a full width page template with no sidebar. Ideally used for galleries and forums.

First of all open the directory containing all your Wordpress template files, normally found here: your-root/wp-content/themes/your-theme-name/

Look for the file entitled ‘page.php’ open it in your favourite code editor. Next create a new file called ‘page_fullwidth.php’ or similar in the same folder as page.php.

Next copy all the code from page.php and paste it into page_fullwidth.php, you can now close page.php as you no longer need it.

You must tell Wordpress that this file is a page template, to do this we must add the following code right at the top of the code:

You can call the template whatever you want, instead of ‘Page Full Width’ you could use ‘Forum’ or ‘Gallery’. This is the name that will be displayed (and can be set) in the ‘Attributes’ section on the right hand side under ‘Template’ in the add/edit page screen.

OK, now you are ready to make the changes to the structure of the page. In this case we want to remove the sidebar. so look for the following line and remove it:

Now you have to add some CSS. Namely adding divs that are the correct width for the new page. SO your CSS will probably have a container for the content called ‘container’ or ‘contentwrapper’ etc and will probably look something like this:

#contentwrapper {
	float:left;
	width: 620px;
	margin: 0 0 15px 10px;
	padding: 0;
	text-align: left;
  }

Obviously the width is to small to allow content to flow right across your new page template so me must change it to match the width of the containg div (if your theme is full screen and all widths are in percentages dont worry about doing this, most are fixed width these days though). Anyway create a new contentwrapper just for this page template. It should look something like this:

#contentwrapper2 {
	float:left;
	width: 910px;
	margin: 0 10px 15px 10px;
	padding:0;
	text-align: left;
  }

Remember and change the div declaration name in your page_fullwidth.php:

so the page template uses the new CSS.

There you have it, a full width page template with no sidebar.

Check out my next tutorial and learn how to setup and implement multiple/different sidebars, footers, headers and comment templates.

Join the forum discussion on this post - (1) Posts
  • Share/Bookmark
Leave a Comment more...

Opencart – Possibly the best open source shopping cart software!

Opencart is an open source shopping cart written in PHP that is rapidly growing in popularity. This is in part down to its creator Daniel Kerr’s hard work in building Opencart from the ground up using a logical MVC framework.Opencart

MVC explained:

Model: The database layer. All calls to the database are done here, referenced from the controller.
View: Template display for front and backend. This is where the HTML/CSS designing is done.
Controller: Main controlling code base. This is where the functional code logic is processed.

What this all means is that Opencart’s code is streamlined and easier to follow than some other bloated opensource ecommerce solutions such as OsCommerce and Zencart. The benefits of this easy to follow code makes it easier to customise. Opencart’s template system is pretty easy to get to grips with and an original template can be achieved with some HTML/CSS and image creation skills. However if you do not possess these skills, free templates can be found on numerous places on the web including the Opencart contribs page. Templates are easy to install and you can install your own logo through the Opencart admin area. Brilliant!

Opencart also appeals to designers and shop owners alike because it is fast, secure, well supported and expandable.

The current version is 1.3.2 which can be downloaded here. The current release boasts a multitude of great features, including multi-language capabilities, product ratings and my personal two favourites; downlaodble products and product review capabilities (reviews can also be written in the admin panel! Awesome.). There is built in compatibility with a number of payment gateways such as Worldpay and Sagepay. Paypal is supported too and Google Checkout will be in the next release v1.3.3 alongwith; Google Base, Google Talk, Google Site Map. Cant wait for that release!

In conclusion I really think Opencart can contend with the big boys and if it was a case of Opencart vs OsCommerce and Zencart then Opencart wins everytime. Well done to everyone who is involved and has contributed something to Opencart!

  • Share/Bookmark
4 Comments more...

Password box different size from text box in IE

Just a little web design hint for your enjoyment.

If you have forms on your website you know how annoying it is that IE renders password boxes smaller than normal text boxes. Well there is a quick and easy CSS fix:

input{

font-family: Verdana, Arial, Helvetica, sans-serif;

font-size:12px;

}

Obviously you can change the family and size to suit your site.

  • Share/Bookmark
Leave a Comment more...

Bluehost vs Justhost vs Fasthosts Review – Whos the top web host?

So who is the better host, Bluehost, Justhost or Fasthosts? The Path Hosting has been launched and is better than all three sign up for just £1pm here.

Well I have experience with all 3 which is why Im comparing and reviewing them.

Im going to rate and review them on 4 main areas: Cost, Customer Support, Ease of Use and What You Get For The Money.

Cost:

Bluehost: Well the home page says $6.95 per month (Special deal of $3.95 on date of writing this post) but the helpdesk states $7.95 for a 24 month sign up and $8.95 per month for 12 month sign up. A dedicated ip can be added on for $30 per annum and a SSL security certificate can be added for $45 per annum. I would recommend adding the dedicated IP for sure and of course the SSL if you plan to host online shops or other site with data that requires protection etc.

Just Host: They are normally £4.95 ($8.13) per month but like Bluehost have a special deal on and are currently priced at £2.95 (£4.84). A dedicated ip can be added on for $19.95 per annum. Shared SSL security comes free as standard but a private SSL will cost $69.95.

Fasthosts: Also doing a deal at the moment! Packages start at £2.95 and range to £7.99 per month. Im unsure of the cost of a dedicated ip or SSL cert although the SSL comes as standard with the 2 more expensive plans.

OK so thats the costs, and overall taking into account SSL’s and dedicated IP’s Fasthosts might be edging ahead slightly with Bluehost in pursuit ahead of Just Host…….I doubt it will stay that way at the end of the review though!

Customer Support:

Well they all boast 24/7 support but only Bluehost have a live chat option allowing you to access support within minutes. Ive used it a good few times and only ever had to wait ten minutes max. They all have a support FAQ area; Bluehosts again seems to have more content and easier to find stuff, it laso has a lot of video how tos etc. You can submit support request in all three but annoyingly Just Host as a ‘Purchase Priority Support’ option which feels like they’re trying to screw you a bit! Overall Im going for Bluehost on this one, the Live Chat and and friendly service swing it!

Ease of Use:

To be honest they are all pretty easy to use. Bluehost and Justhost are almost exactly the same in the backend, both use cpanel, phpMyAdmin etc. Fasthosts dont have this and lack the control functions that can be utilised in both Bluehost and Justhost. So a tie between Bluehost and Justhost for this round.

What You Get For Your Money:

Ahhh the most important thing, value for money and getting the functionality required. So what do you get for your money with Bluehost? Well its not bad you get unlimited disk space and transfer, 999 subdomains, 999 addon domains and 999 parked domains; most people probably wouldnt even get close to reaching that many domains anyway. The only thing that worries me slightly is you can only have 100 databases, now I know that seems like a massive amount and that you can use one database for multiple domains etc but I would just be a little happier if this was a bit higher. Apart from that eveything is very good for a standard to high end user.

Just Host have kept it simple by making everything unlimited which I have to say for me being a high end user gives me good piece of mind for the future, although for your average user the unlimited-ness is uneccessary.

Fasthosts…..well not sure if I can be bothered because they cant be really. You have to take out another hosting package for each website you want hosted! So Justhost offer you unlimited websites, Bluehost give you 999 and Fasthost give you 1 so not much value for your dough their Im afraid. Fasthosts…..you suck.

Result:

Well Justhosts unlimited everything almost swings it for me but I have to say Bluehost get my vote because they are affordable and the support is good, I like being able to chat with someone straight away at no cost to me!!

I read somewhere that Hostmonster is owned by Bluehost too so they will probably be very similar and worth a look. Please use the comment form below to tell me your experiences with hosts and tell us which one you like best! Anyone know what Go Daddy or Host Gator are like?

See the hosts here:

Bluehost.com Web Hosting $6.95


Professional Hosting fro Just Host


Hosting 468x60 animated gif


Host Unlimited Domains on 1 Account


GoDaddy.com Hosting & Servers 468x60


  • Share/Bookmark
3 Comments more...

Designed and Hosted by The Path Web Design