Branding
A company brand is important. The brand is the thing that the consumer identifies with. Getting the right brand image can be tricky but we are here to help. From logo to full corporate identity we will give you the perfect look to corner your market and trade with confidence. A corporate identity is a set of design elements that identifies your company. This will include a logo, a colour scheme, headed paper and more. The identity is supplied in electronic format so you are free to choose your printing provider, although we can take care of this for you if desired.
 |

|
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- |