Magento: Upgrading Magento with a full package
Backup your database Backup all the code you modified yourself, and don’t forget to keep the original installation archive Take care of saving the media directory that contains all the…
Magento is a feature-rich eCommerce platform built on open-source technology that provides online merchants with unprecedented flexibility and control over the look, content and functionality of their eCommerce store.
Magento’s intuitive administration interface features powerful marketing, search engine optimization and catalog-management tools to give merchants the power to create sites that are tailored to their unique business needs. Designed to be completely scalable and backed by Varien’s support network, Magento offers companies the ultimate eCommerce solution.
Backup your database Backup all the code you modified yourself, and don’t forget to keep the original installation archive Take care of saving the media directory that contains all the…
If you want to display a certain category on a page, add this code on the design tab and then replace [category id here] with your category id.
Go to app/code/core/Mage/Catalog/Block/Product and created a new file called Manufacturer.php and pasted this block code: Then go to /app/design/frontend/[theme name]/[theme name]/template/catalog/product and created a new .phtml file called manufacturer.phtml and…
With this mod you can add images. Images must be the same name as the manufacturer and must end with .jpg manufacturer.phtml: /app/design/frontend/default/default/template/catalog/product/ manufacturer.php /app/code/core/Mage/Catalog/Block/Product/ images: /media/catalog/brands/ you must alter…
1- create a new page called ex: Newest arrival 2- go to Design tab and add this code 3- save the page -------------------- Magento ver: 1.3.2.4
This tutorial for creating a grid for categories with images.
You can do it without editing the core files of Magento
*Create a new file called “category_listing.phtml” on this directory “app/design/frontend/default/YOUR_TEMPLATE/catalog/navigation/”.
*Add the following code on that file:
(more…)
After finishing the site and It’s ready to publish it. you will need to delete all test orders. How can we do it???
First: backup the database and the files.
second: go to PhpMyAdmin and run this sql code (more…)
You can create a basic “container” as is done with the “right, left, and content” blocks by just adding something like
<block type="core/text_list" name="myblock" as="myblock"></block>
to page.xml. From there you can populate it with content blocks via the layout files as normal.
(more…)
If you want to reference a static block from inside of a CMS page or another static block use this syntax: [html] {{block type="cms/block" block_id="my-new-block"}} [/html] If you want to…
MySQL Dump.
backup all files (make sure to archive on a .zip file).
Now you need to create a blank database and import the MySQL dump file to it.
Note: load the SQL dump into Editplus or something similar and search and replace the URLs before importing for example: “http://www.domain.com/test/” replace with “http://www.test.com/”.
(more…)