Implementing 'Show Your Google Analytics Top Content in Wordpress'


After reading this article, I modified and implemented it in this blog. You can see it in the right column.

This is how I did it.

Continue reading Implementing ‘Show Your Google Analytics Top Content in WordPress’

Shopping Cart v1.1 Beta updates

You can download from here and read the update log here.

Adding Ajax File/Image Manager to Codeigniter+BackendPro

I was planning to create a file/image module for the CI shopping cart. Then I found this solution called TinyMCE Ajax File Manager. This enables you to upload, delete, create and organize your folders and files.

Continue reading Adding Ajax File/Image Manager to Codeigniter+BackendPro

Three column layout which works with long contents in any column


I guess some CSS gurus must have done it before. But after browsing a maxdesign’s page, I decided to modify one of their layout. I wanted to improve in two aspects. The main content comes before the left column. This is semantically better. And I also want to allow all three columns to have a long content without problem.

This layout has one image and one conditional style for IE6.

Continue reading Three column layout which works with long contents in any column

Shopping cart v1.1 Part 18: shopping cart


Every ‘BUY’ button under a product is linked to cart method with it’s id. This adds details of the product to our shopping cart.

Continue reading Shopping cart v1.1 Part 18: shopping cart

Shopping cart v1.1 Part 17: Newsletter


Newsletter is one of effective marketing tool for a web shop. I am going to cover subscribe and unsubscribe function in this article.

Continue reading Shopping cart v1.1 Part 17: Newsletter

Shopping cart v1.1 minor updates

jquery ketchup-plugin

Codeigniter Language Helper

http://codeigniter.com/user_guide/helpers/language_helper.html

We can simplify

echo $this->lang->line();

to

echo lang(‘language_key’, ‘form_item_id’);

Updating Preferences/Settings

Adding all the webshop languages in the back-end so that it will be automatically used.

External link in menu $uri = $menu['page_uri']; $external_link = ‘http’; $pos = strpos($uri, $external_link); // Note our use of [...]

Shopping cart v1.1 Part 16: Registration page and customer log in page


Our customers uses this registration page to keep their information in our database. Once registered, this information will be displayed in a checkout page for a speedy process. This post covers the customer registration function, login and logout function.

Continue reading Shopping cart v1.1 Part 16: Registration page and customer log in page