douzhun5971 2015-05-20 18:20
浏览 49
已采纳

如何将自定义产品添加到magento购物车 - 请解释这些选项

Can someone please explain how to properly configure and where to get the ID's, names, options, etc of this code?

I've been searching but other questions only leads to the solution of some mistake, but I need first to know where to get the numbers that are requered.

It's supposed to get a custom product and add it to the cart.

$product_id = 12;
$id_opt_value = 12;
$final_opt_value = 12;

$product = Mage::getModel('catalog/product')->load($product_id);
$cart = Mage::getModel('checkout/cart');
$cart->init();
$params = array(
    'product' => $product_id,
    'qty'     => 1,
    'options' => array(         
        $id_opt_value => '123456',
        $final_opt_value => 'black gloss finish',
     )
);

This is the complete code:

require_once '../app/Mage.php';
umask(0);
/* not Mage::run(); */
Mage::app('default');

Mage::getSingleton("core/session", array("name" => "frontend"));

$product_id = 12;
$id_opt_value = 12;
$final_opt_value = 12;

$product = Mage::getModel('catalog/product')->load($product_id);
$cart = Mage::getModel('checkout/cart');
$cart->init();
$params = array(
    'product' => $product_id,
    'qty'     => 1,
    'options' => array(         
        $id_opt_value => '123456',
        $final_opt_value => 'black gloss finish',
     )
);

$cart->addProduct($product, $params);
$cart->save();

Any help is appreciated.

  • 写回答

1条回答 默认 最新

  • dopr25398 2015-05-20 18:58
    关注

    I guess I made it, but I'm still unsure how to check the custom ID.

    $product = Mage::getModel('catalog/product')->load($product_id);
    $cart = Mage::getModel('checkout/cart');
    $cart->init();
    $params = array(
        'product' => $product_id,
        'qty'     => 1,
        'options' => array(
            1 => 1, //(custom option ID like color) => (custom value for color, like red)
            2 => 3 //
         )
    );
    

    If anyone could inform me how to know exactly the numbers of options I'll chose as correct answer.

    The logic says that 1 => 1 is (first custom attribute => first value) but after that it's not the same because the 2 => 3 returned me as (second custom attribute => first value of that attribute).

    This is probably because the fist attribute has 2 values so the second attribute gets the 3rd place and so on...

    ---EDIT---

    So I finally found the answer on this other question (if anyone needs it in the future) :) Magento - Get Custom Option Value details from Option Value ID

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀