Ecommerce
If you want to sell products online you must display your products, allow customers to add products to a shopping cart and then take orders and payment information. This is best done with a database driven ecommerce store. There are numerous different ecommerce stores available. We provide a store based upon the osCommerce platform, which has over 12,000 online stores at current. We have revised this basic store to suit UK businesses and added a whole host of additional features such as separate pricelists, SEO optimisation and more.
The store we offer is also known as Starfish2. See our Starfish Solutions page for more information.
If your business required particular functions we can add these as necessary.
 |

|
Ok here’s how to make a dynamic jQuery sliding accordian menu in Magento, as seen on http://www.waterfrontbathrooms.com/.
Waterfront bathrooms also has a dynamic tree menu system to deal with there being more than 2 levels of categories, but I’ll cover this in a future post.
Upload jQuery
Upload the latest jQuery version to js/jquery/jquery | If you’re putting a shopping cart area anywhere other than the standard cart side block, then you’ll probably want to show how many items are in the cart at any one time. Here’s how:
$cart = Mage::getModel('checkout/cart')->getQuote()->getData();
if(isset($cart['items_qty'])){
if($cart['items_qty'] != 1) {
echo "You have " . | Here’s a short list of magento codes to do some of the simple stuff. It’s a little empty at the moment but I’ll keep adding to it over time.
Check if customer is logged in
<?php
$_customer = Mage::getSingleton('customer/session')->isLoggedIn();
if ($_customer) {
// do stuff
}
?>
Get product image
<?php echo $this- |