This template, offered exclusively by Magentist, is sleek, crisp, and modern. Ideal for professional, high-end stores featuring electronic hardware, software, media, and other goods with a modern appeal.
Complete an installation of Magento on your site and create a Website, Store, and Store View.
After installing Magento on your site, upload your theme files to the appropriate folders, following the folder structure in which the theme is provided.
Access the Admin Panel and navigate to System > Configuration.
Select your Store View from the Current Configuration Scope drop-down menu in the upper left corner.
Click on "Design" under the "General" section of the left side navigation.
Under the "Themes" section, uncheck all of the check boxes titled "Use website."
In each text field, enter the name of the folders containing the theme you wish to use.
In this case, enter "tecknica" (without quotes).
From the top navigation, navigate to CMS > Pages.
Click on the "+ Add New Page" button.
Enter your desired page title.
For the home page, be sure to set your URL Key as "home" and select your store view.
Select "Design" from the left side navigation and set Layout to "3 columns."
Enter the following code in the text area labeled "Layout Update XML."
<reference name="left"> <block type="catalog/navigation" before="-" name="catalog.sidebar" template="catalog/navigation/sidebar.phtml"/> </reference> <reference name="content"> <block type="catalog/product_new" name="home.product.new" alias="product_new" template="catalog/product/new.phtml"> <action method="addPriceBlockType"> <type>bundle</type> <block>bundle/catalog_product_price</block> <template>bundle/catalog/product/price.phtml</template> </action> </block> </reference> <reference name="top_slider"> <block type="cms/block" name="showcase"> <action method="setBlockId"> <block_id>showcase</block_id> </action> </block> </reference> <remove name="right.newsletter"/>
Select "Content" from the left side navigation, click the "Show/Hide Editor" button and enter the following code:
<!-- content -->
Set the Status to "Enabled" and click on the "Save Page" button in the upper right corner to save and activate your homepage.
Navigate to CMS > Static Blocks.
Click the + Add New Block button.
Create the block "showcase" with the following code for content:
<div id="slider">
<div class="slidercontrolwr">
<div class="slidercontrol">
<a href="#" class="aprev" title="Previous" onclick="my_glider.previous();return false;">Previous</a>
<a href="#" class="astop" title="Stop" onclick="my_glider.stop();return false">Stop</a>
<a href="#" class="aplay" title="Play" onclick="my_glider.start();return false">Start</a>
<a href="#" class="anext" title="Next" onclick="my_glider.next();return false">next</a>
</div>
</div>
<div class="scroller">
<div class="content">
<div class="section" id="section1">
<a href="#" title=""><img src="{{skin url=""}}images/slider1.jpg" alt="" /></a>
</div>
<div class="section" id="section2">
<a href="#" title=""><img src="{{skin url=""}}images/slider2.jpg" alt="" /></a>
</div>
<div class="section" id="section3">
<a href="#" title=""><img src="{{skin url=""}}images/slider3.jpg" alt="" /></a>
</div>
<div class="section" id="section4">
<a href="#" title=""><img src="{{skin url=""}}images/slider4.jpg" alt="" /></a>
</div>
</div>
</div>
</div>
<script src="{{skin url=""}}js/glider.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
var my_glider = new Glider('slider', {duration:0.5, autoGlide: false, frequency: 4, initialSection: 'section1'});
</script>
Create the block "menu" with the following code for content:
<li><a href="{{store url=""}}about"><span>About Us</span></a></li>
<li><a href="{{store url=""}}testimonials"><span>Testimonials</span></a></li>
<li><a href="{{store url=""}}contacts"><span>Contact Us</span></a></li>
Create the block "payments" with the following code for content:
<img src="{{skin url=""}}images/payments.gif" alt="payments" />
Open the file app\code\core\Mage\Catalog\Block\Product\New.php
Locate the code const DEFAULT_PRODUCTS_COUNT = 5;
Change the "5" to a "6" or to whatever number of products you desire to have displayed on your homepage.
Just set up your categories and products, and you now have a beautiful, fully functioning ecommerce website!