Archive for February, 2010

Core Commerce Reviewed

Saturday, February 27th, 2010

Curious how Core Commerce Compares to Volusion – I have lined them up and done the leg work for you. Read it here

I’ll be honest – I have only just recently found out Core Commerce existed. In all my years and all my searches it has never crossed my path. As far as I can gather it has been around since early 2008 (whether it is based on a product from before this I don’t know yet). Not as long as Shopify, but longer than Big Commerce.

It is quote low key. Only 130 odd followers on Twitter, a handful of blog posts each month, 2000 forum posts, 1000 some forum members, not a very deep site (a bit of content here and there but nothing to rock the bookshelves). From first impressions this morning until now all I keep thinking is that Core Commerce is Big Commerce‘s baby brother.

I had heard some great things about it once I started looking into the product, but no huge enthusiasm like I had seen with Big Commerce, Shopify and even the Volusion fan boys.

Templates.

If you read the Core Commerce website they brag about the quality of there templates (including claiming there’s are better than Big Commerce) – No. Bad Core Commerce. Your templates are passable. Your templates are serviceable. Your templates and usable. They are not better than Big Commerce. They are out dated to put it mildly. They are a big step up from Volusion -I agree with that – but you are quite a long way off the Interspire/Big Commerce templates.

It’s not all bad news though, the customisation is good. Lots of options to change, lots of fine grained control – it’s a bit clunky but it works and I can definitely see people using it at the expense of hiring me. Big points for that the other shopping carts would do well to offer as many design customisation options.

SEO

Optimisation

Pretty crappy. A lot to do with the template you select, but there is a lot of CSS embedded in the page, no canonical URL’s no robots meta tags -I’m not impressed, I hope they are getting on top of this.

Meta tags

Good (there are even some guides and help text).

URL’s

Lazy and ugly. Not exactly user friendly with Id’s and other identifiers tacked onto the end of most pages. Better than some offerings but showing there age.

Integration

Google Products, Shopzilla all in there which is a nice feature. Plenty of room for text and page content.

Admin Interface

Really ordinary. While all the options are there it lacks the polish of shopping carts of similar price, in fact I think that is the best way to sum up my initial thoughts of Core Commerce.

It lacks polish. Not a death sentence and it has some great features (PCI-DSS Compliance for one) that should help it gain market share (especially if Big Commerce don’t hurry up and get compliant).

Fix Paypal Buttons in Thesis

Monday, February 15th, 2010

Have you ever tried to insert Paypal Buy Now buttons into a blog running Thesis ? You follow all the instructions and end up with great big scaled up pay pal buttons that look stupid.

Paypal buttons in Thesis are huge

So, how do i fix them ?

The fix is actually very simple. Open the Thesis Custom File Editor. From the drop down list select custom.css and click the green Edit selected file button.

At the end of the file add the following code

.custom .format_text input, #commentform input, #commentform textarea {
    width:auto;
}

if you are having trouble try typing it instead of copy and pasting.

Save the file, and reload you page with the paypal buttons. If everything went to plan your buttons should be the correct size now.

Normal sized paypal buttons in Thesis

Goodluck, I hope this helps you out. Let me know either way

Make Google Friend Connect Work with Thesis

Wednesday, February 10th, 2010

Google Friend Connect is a set of Google gadgets designed to turn your blog or website into a community with nothing more than copy and paste.

Adding Friend Connect features to a website requires no programming skills; you just copy and paste snippets of HTML code onto your site. You can can also add custom integrations with Friend Connect’s API.

Unfortunately for WordPress users (more specifically Firefox visitors to WordPress blogs) it doesn’t work quite that easily. Simply pasting the provided code into a sidebar text widget won’t work for any of your site visitors using Firefox. Internet Explorer is OK – and that is about the only time that phrase will leave my lips.

Before you start take the opportunity to join my Google community – please- come on it looks sad there with no one in it. My mum checks this blog, I want her to see I have some friends.

How to make Google Friend Connect with Thesis, WordPress and Firefox

Step 1.

Log into Google Friend Connect and get the code for your members gadget.

The code comes in three parts.

The Google Friend Connect Library

<!-- Include the Google Friend Connect javascript library. -->
<script type="text/javascript" src="http://www.google.com/friendconnect/script/friendconnect.js"></script>

The DIV tag (marking the insertion point for the gadget)

<!-- Define the div tag where the gadget will be inserted. -->
<div id="div-4138360605280xxxxxx" style="width:276px;border:1px solid #cccccc;"></div>

The skin (or render) JavaScript

<!-- Render the gadget into a div. -->
<script type="text/javascript">
var skin = {};
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
skin['NUMBER_ROWS'] = '4';
google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
{ id: 'div-4138360605280xxxxxx',
site: '06043523137538175547' },
skin);
</script>

Step 2.

In WordPress go to Appearance, Widgets and add a new Text widget to the sidebar where you want the gadget to appear.

Leave the title blank (my preference, feel free to do what you like)

In the body of the widget paste ONLY the DIV portion of the Google Friend Connect Code

<!-- Define the div tag where the gadget will be inserted. -->
<div id="div-4138360605280xxxxxx" style="width:276px;border:1px solid #cccccc;"></div>

Step 3.

Go to Thesis Options (/wp-admin/admin.php?page=thesis-options)

Expand the Footer Scripts option panel.

Above any code that may already be in there (like Google Analytics) paste

<script>
window.JSON = {
parse: function(st){
return st.evalJSON();
},
stringify: function(obj){
return Object.toJSON(obj);
}
};
</script>

Below this snippet (required for Firefox) paste the Google Friend Connect Library code and the  skin JavaScript.

<!-- Render the gadget into a div. -->
<script type="text/javascript">
var skin = {};
skin['BORDER_COLOR'] = '#cccccc';
skin['ENDCAP_BG_COLOR'] = '#e0ecff';
skin['ENDCAP_TEXT_COLOR'] = '#333333';
skin['ENDCAP_LINK_COLOR'] = '#0000cc';
skin['ALTERNATE_BG_COLOR'] = '#ffffff';
skin['CONTENT_BG_COLOR'] = '#ffffff';
skin['CONTENT_LINK_COLOR'] = '#0000cc';
skin['CONTENT_TEXT_COLOR'] = '#333333';
skin['CONTENT_SECONDARY_LINK_COLOR'] = '#7777cc';
skin['CONTENT_SECONDARY_TEXT_COLOR'] = '#666666';
skin['CONTENT_HEADLINE_COLOR'] = '#333333';
skin['NUMBER_ROWS'] = '4';
google.friendconnect.container.setParentUrl('/' /* location of rpc_relay.html and canvas.html */);
google.friendconnect.container.renderMembersGadget(
 { id: 'div-4138360605280xxxxxx',
 site: '06043523137538175547' },
 skin);
</script>

Conclusion

There really isn’t one. I have no idea why Google’s code doesn’t work – I can not understand the management decision making that allowed it to be released.

The code above will work for any WordPress site, but instead of being able to paste the code into a Thesis Option panel, just open your footer.php file in the WordPress Theme Editor and paste it directly above the </body> tag.

Would love to hear from anyone this helps, remember to use the code Google gave you, not my code – sing out if you have any trouble.

Big Commerce vs Volusion

Monday, February 8th, 2010

The two biggest hosted shopping carts (or e-commerce platforms if you want to impress girls)  offer incredible feature’s, years of development and award winning customer service. This review will have to look at how each feature is implemented to split the difference.

Price

Both offer free trials. 14 days for Volusion and 15 days for Big Commerce

Both start at $24.95 a month – Volusion hide the link in the footer which always concerns me. Neither charge transaction fee’s – take that Shopify

Setup Cost: Big Commerce is $49.95 to Volusion‘s $49.00 – not worth mentioning except that some Volusion fan boy will cling to it and mess up my comments.

So what price difference’s are there ?

The basic (cheapest plan) at Volusion allows 25 products and 1 Gb or data – Big Commerce give you 100 products and 2 Gb data

On price Big Commerce trumps Volusion.

Look and Feel – Front End

If you have  a designer on board that is going to customize your shop or integrate it into your existing design – skip this section now. I am going to say some truly awful things about the templates in Volusion and if you aren’t going to use them you might as well save yourself the blushing.

8 years ago you would have punched a designer in the mouth if they delivered you a online store looking like the one’s Volusion saddle’s you with. I hate every single one of them. They are horribly dated, poorly optimized, visually upsetting and atrocious to work with. Given the quality and quantity of Volusion‘s client roster I expect better – quite frankly it is an insult that they would even offer these disgraceful templates, free as they are.

Big Commerce on the other hand have dropped some serious cash getting some beautiful, clean and very usable templates created. You could very easily go live with one of the free templates or you could very simply get one made by giving your designer FTP access to your site. Yep, FTP access to your hosted shopping cart – perfect 10 points to Big Commerce, go straight to the front of every developer and designer’s list with this feature.

Look and Feel – Admin Area

I like the look of Big Commerce (it is identical to Interspire), it is clean, modern, intuitive and packs a lot of information and remains easy on the eye. Volusion is a little squarer, a touch old school but just as effective. I doubt there is enough between these two to hold one above the other so let’s call this a draw.

Search Engine Optimization

Both offer the ability to specify the Title, Keywords and Description fields.

By default Volusion uses ugly query string’s and Product Id’s but it can be configured to “look” a little better – but it is  a weak hack reminicent of the crappy SEO offered by osCommerce and her bastard offspring.

Big Commerce comes to the table with some pretty clean URI’s using the product name as the page (replacing spaces with dashes) – there are some weird results if you use special character’s or punctuation, but you shouldn’t be using them at all.

Big Commerce also integrates with Google Website Optimizer for all your testing and analysis

Additional Features

Both offer Gift Certificates, Electronic (downloadable products), coupons, there own payment gateway product (only available to US customers), newsletters – there really is not much to split them at this level.

The big difference is what Big Commerce is looking to offer in the next release (version 6). Things like multiple warehouse, drop shipping, Mail Chimp integration, pre-order, back order, iPad and iPhone support and eBay integration

Reputation

Both have been around for at least 10 years in some form or another and generally have good histories and reviews, the next 12 months will be telling as Big Commerce tries to muscle in on territory that has usually been safe with Volusion.

Customer Service and Support

Lots of awards, lots of happy customer’s. We have had no trouble getting support to help us or sales to call us. We would love to know your experience with either company – leave your comments below.

For more in this series of see Big Commerce vs Shopify

Need more info or a free trial click the banner below

Volusion – A first look

Sunday, February 7th, 2010

I am publishing this early because I am so incredibly unimpressed with Volusion as an e-commerce platform, I am hoping someone will set me straight while I dig a little deeper.

Volusion has a lot of awards and some very impressive customers if you believe there home page – but I hate to say it I was incredibly underwhelmed when I gave it a test run recently. My only conclusion is that they have taken the original 1999 version of this software and tacked things on to meet the sales pitch.

It certainly looks the part

Search Engine Friendly

Oh my god. It is crap. I can only assume it is deliberately shit so that they can sell you there SEO services – which seem to be advertised on every other page – for shame.

Volusion Templates

Lots but they are pretty average, in fact they remind me of old Frontpage themes. One of the things that initially sold me on Interspire/Big Commerce was that it looked usable right out of the box – not so with Volusion – it is really quite ugly.

They give you full HTML and CSS access which is nice, but without a way to upload images and resources you will need some sort of external hosting.

Social Features

Nothing more than the Add This button. Seriously. They even have a video touting the social shopping solution – not even the choice of providers or a means to customise the Add This (that I could find) – I was pissed at this. I don’t mind if you have no social integration -it is easy enough to configure if you have HTML access, but to piss in my coffee and call it caramel is insulting.

It’s not all bad. There are several great features.

The 301 Redirect manager means you could fix the awful SEF URL’s. I have seen Big Commerce recently copy this feature and it really is great, simple enough to use and you can import and export so yippee for getting something right.

IP Firewall – I can think of a few times this might be useful – most especially during the construction phase.

Gift certificates, downloadable (electronic) products, coupons all things the other major vendors tried to sell as extras  – bravo Volusion for coming the goods and giving every customer a full package