0

スクリプトを使用してカテゴリをインポートしようとしています

 $cat = Mage::getModel('catalog/category')
                            ->setPath('1/2')
                            ->setName($name)
                            ->setIsActive(1)
                            ->setIsAnchor(1)
                            ->setIsParent(1)
                            ->setIncludeInMenu(1)
                            ->save();
               echo $catId = $cat->getId();

このコードを使用すると、カテゴリがインポートされますが、アクティブではなく、アンカーでもありません。plzは私を助けます。

4

2 に答える 2

0

これを試してみてください。

require_once'app / Mage.php'; Mage :: app('default'); /*デフォルトまたはストアビュー名。* /

/* get a new category object */
$category = Mage::getModel('catalog/category');
$category->setStoreId(0); /* 0 = default/all store view. If you want to save data for a specific store view, replace 0 by Mage::app()->getStore()->getId(). */


$general['name'] = "My Category";
$general['path'] = "1/2/23"; /* catalog path */
$general['description'] = "Great My Category";
$general['meta_title'] = "My Category"; /* Page title */
$general['meta_keywords'] = "My , Category";
$general['meta_description'] = "Some description to be found by meta search robots. 2";
$general['landing_page'] = ""; /* has to be created in advance, here comes id */
$general['display_mode'] = "PRODUCTS_AND_PAGE"; /* static block and the products are shown on the page */
$general['is_active'] = 1;
$general['is_anchor'] = 0;
$general['page_layout'] = 'two_columns_left';

/* $general['url_key'] = "cars";//url to be used for this category's page by magento. */
/* $general['image'] = "cars.jpg"; */

$category->addData($general);

try {
    $category->save();
    echo "Success! Id: " . $category->getId();
} catch (Exception $e) {
        echo $e->getMessage();
}
于 2012-12-20T21:15:28.690 に答える
0

Amitの答えは機能しますが、同じ基本的な考え方は、メソッドがsetIsActive()であるということです。

それで:

$category
    ->setStoreId(0)
    ->setPath("1/{$root_category_id}" . ($parents ? "/{$parents}" : ''))
    ->setStoreId(0)
    ->setName($category_name)
    ->setIsActive(1)
    ->save();
于 2013-05-21T16:18:02.920 に答える