Magento themes and extensions

Retina responsive multi-purpose magento theme MT

Share
Posted on May 23rd, 2013 | Posted by admin

MT Webshop is a responsive multi-purpose magento theme. It will be a great solution for online store selling: Fashion, Clothe&Shoes, Jewelry, Hi-Tech…and more…with so much modern functions. The theme is very nice and clean. The design perfectly outlines the products in the store with minimalism approach.

It comes with 4 Amazing Themes Color and Flexible Layout. It is active, energetic and aggressive in Red and Yellow Green style. A pleasant and relaxing emotions come from Green color or the Sincerity and Peace from Blue style.

One of the interface’s impressive extensions is creative Slideshow with 20+ transition effects which no one can resist. Along with Slideshow, MT Webshop offers Mega Menu with multi-columns, image and video and massive information. On the MT Webshop homepage, the products are displayed by many different groups. Customers are easily attracted by the variety and innovation of the products. With this magento theme, you also have in hand a lot of conveniences, including: latest products, featured products, and many other product widget, products images with could zoom javascript effect, ajax add product to cart, quickshop, multiple static CMS blocks…and more. Owning friendly interface and many modern features , MT Webshop is truly a theme which has customer in mind. We believe that it will surely meet the highest of your business objectives.

Magento – Show Firstname or Lastname Only In Welcome Message

Share
Posted on May 23rd, 2013 | Posted by admin

If you would like to change the default welcome message in magento from “Welcome, Paul Donnelly” to “Hi Paul” or “Hello Mr Donnelly”, use the following snippets within
app\design\frontend\default\default\template\page\html\header.phtml

Firstname

<?php echo $this->__('Hi %s', Mage::getSingleton('customer/session')->getCustomer()->getFirstname()); ?>

Lastname

<?php echo $this->__('Hello Mr %s', Mage::getSingleton('customer/session')->getCustomer()->getLastname()); ?>

Changing the Currency Select Menu in Magento to a List with Flags

Share
Posted on May 22nd, 2013 | Posted by admin

Changing the Currency Select Menu in Magento to a List with Flags
Because a regular select menu can’t have images or background images applied to it (except in newer versions of Firefox) you need to use another method by changing a phtml file, css and a touch of JS to make it a touch better.

Step 1: Open /app/design/frontend/default/{YOUR THEME}/template/directory/currency.phtml and change the <select> and everything in between for this:

<ul>
<?php foreach ($this->getCurrencies() as $_code => $_name):
if($_code==$this->getCurrentCurrencyCode()){
$topoption = ‘<li style=”background-image: url(\’/skin/frontend/default/{YOUR SKIN}/images/flags/’.$_code.’.png\’)”><a href=”‘.$this->getSwitchCurrencyUrl($_code).’”>’.$_name.’ – ‘.$_code.’</a></li>’.”\n”;
}

Multiple Magento Stores on the Same Server

Share
Posted on May 21st, 2013 | Posted by admin

In this tutorial we will be discussing how to set up multiple Magento stores on the same dedicated server. In this example I will be setting up 2 stores, one main store (TV Mania) and one sub-store (Macs R Us), both of these have been completely made up!

Create Root Category

Firstly we will need to create hosting accounts for each of the stores on the server and install Magento onto the main/parent account (TV Mania). Once we have installed Magento and have full access to the admin area we’ll need to create a new root category for our sub store (Macs R Us) to use.

We can do this by going to Catalog > Manage Categories and clicking Add New Root Category on the left. This will load the normal Magento category fields, in this example we will input the following and save the root category:

How to show total shopping cart price in Magento Header

Share
Posted on May 20th, 2013 | Posted by admin

If you go to pretty much any e-commerce site you will see in the header your quick cart details, these will consist of how many items are in your basket and how much your current total is. By default Magento only shows you how many items are currently in your basket and no total. As a store owner you want to give your customers as much detail as possible and knowing how much they are spending on your site is something the customer may want to know without having to go to their basket to see their current total.

The solution below shows you how to add the price total of the basket to your basket details; this is a really easy and quick solution. Firstly navigate toyourtemplatename/page/html/header.phtml and copy the code below to where you want it displayed.

Page 1 of 15112345»102030...Last »