Frage

I am using Magento 1.9.1 version I have 1000 products in my store.

Is there a script or something that I can run in order to add let's say 6 extra cross-sell products to ALL 1000 products? I don't want to do it 1 by 1 manually.

War es hilfreich?

Lösung

I can recommend you an extension that can do that for you. All you have do to is to generate a csv file with all your products ids (or SKUs) on the first column and the 6 crossell ids (or SKUs) on the next 6 columns for each row.
Then you can import that into the extension and it will add the products as cross sells for all the products you specified.

here is a standalone script you can try, but please backup your database before trying it.
Create a file called cross.php on the same level as index.php with this content:

<?php
umask(0);
require_once 'app/Mage.php';
Mage::app('admin');  

$toBeRelated = array(1=>1,2=>2,3=>3,4=>4); //replace the values in here with the ids of the products you want to be cross sels for every other product. The array key is the product id, the value is the position where they should be added.

$allProductIds = Mage::getModel('catalog/product')->getCollection()
      //don't add products as cross sells for themselves.
     ->addAttributeToFilter('entity_id', array('nin' => $toBeRelated))
     ->getAllIds(); //get only the ids of all the products


$product = Mage::getModel('catalog/product');
$relation = Mage_Catalog_Model_Product_Link::LINK_TYPE_CROSSSELL;
$model = Mage::getSingleton('catalog/product_link')->setLinkTypeId($relation);

foreach ($allProductIds as $mainId) {
    $exist = array();
    $existingCollection = $model->getLinkCollection()
        ->addLinkTypeIdFilter($relation)
        ->setProduct($product->setId($mainId))
        ->addProductIdFilter()
        ->joinAttributes();
    //get the existing cross sells so you won't overwrite them
    foreach ($existingCollection as $item){
        $exist[$item->getLinkedProductId()]['position'] = $item->getPosition();
    }
    foreach ($toBeRelated as $id=>$position) {
        if (!isset($exist[$id])){
             $exists[$id]['position'] = $position;
        }
    }
    //save the cross sells.
    Mage::getResourceSingleton('catalog/product_link')->saveProductLinks(
            new Varien_Object(array('id'=>$mainId)),
            $exists,
            $relation
    );
}

Then just call your script in the browser. I haven't tested it, so watch out for syntax errors.

Andere Tipps

Create new file in root and run it:

<?php
umask(0);
require_once '../app/Mage.php';
Mage::app('admin');  

//1000 product id array
$idArray = array(1,2,3,4,5,....);

 $collection = Mage::getModel('catalog/product')->getCollection();

 $collection->addAttributeToSelect('*');  

 $collection->addAttributeToFilter('entity_id', array('in' => $idArray));

 foreach ($collection as $product) {

 //add crossell prouct id here instead of 1,2,3
        $param = array(
               '1'=>array(
                      'position'=>1
                ),
                '2'=>array(
                      'position'=>2
                ),
                '3'=>array(
                      'position'=>3
                )
        );
        $product->setCrossSellLinkData($param);

        $product->save();

    } 
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top