In this post you will learn how you can export Magento 1.9 categories for a specific store view as CSV. For example, you have Arabic store view with ID 7, and you want to export all arabic category names in a CSV file, below will be the code you want. Create a file on your Magento root and paste the below code, change the $storeId to your desired ID and run the script. After running the above script, you will find the exported CSV file `categories_arabic.csv` in the directory `var/export/` <?php require_once 'app/Mage.php'; Mage::app("admin"); $storeId = 7; $categories = Mage::getModel('catalog/category') ->getCollection() ->setStoreId($storeId) ->addFieldToFilter('is_active', 1) ->addAttributeToSelect('*'); $handle = fopen("var/export/categories_arabic.csv", "w"); $header = array('ID', 'Name'); fputcsv($handle, $header); foreach($categories as $category){ $row = array($category->getId(), $category->getName()); fputcsv($handle, $row); } fclose($handle); ?>
Magento
Magento 1: Export catalog categories for a specific store view
In this post you will learn how you can export Magento 1.9 categories for a specific store view as CSV. For example, you have Arabic store view with ID 7, and y
· 5 min read
Related posts
Magento
Magento 1: Export manufacturers CSV by specific store view
This post will guide you on how you can export the manufacturer list (Magento 1.9) to CSV file. In this script, I am filtering the list by store view. Let’
Magento
Search Magento products by product labels
Project Overview: Task was to develop a Product Labels Magento extension. Where admin can create product labels by uploading an image, enter label title and att
Magento
How to Conditionally remove Magento header/footer?
<p>Are you looking for a solution to conditionally remove Magento header footer but don’t know where to start? Right in this post I will show you how to create custom layout handles and utilize them to conditionally remove header/footer blocks.</p>