gpt4 book ai didi

php - 在 Magento 中为产品设置特价日期

转载 作者:可可西里 更新时间:2023-11-01 01:10:06 27 4
gpt4 key购买 nike

我在 magento 中添加一个简单的产品,我想在其中设置以下内容以及其他内容:-

  1. 特价
  2. 自日期特价
  3. 迄今为止特价

问题似乎出在#2 和#3 点上。我已经成功地设置了#1 点,但我需要帮助来解决最后 2 点的问题。

我已经尝试使用以下两种方法来获取#2 点:-

  1. 设置数据()
  2. setSpecialFromDate()

但以上2种方法均无效。
#3 点也是同样的情况。

如果有人能提供帮助,我们将不胜感激。

最佳答案

折腾了一天,终于搞定了。使用下面的代码使其工作:-

<?php
// Both the Start & End Dates must be in MySQL DB Format
$startDate = '2010-06-30';
$endDate = '2010-09-30';

// Creates the Product object, whose Special Dates are going to be changed
$product = new Mage_Catalog_Model_Product();
$product->load(YOUR_REQUIRED_PRODUCT_ID);

// Sets the Start Date
$product->setSpecialFromDate($startDate);
$product->setSpecialFromDateIsFormated(true);

// Sets the End Date
$product->setSpecialToDate($endDate);
$product->setSpecialToDateIsFormated(true);
?>

这段代码就像一个魅力。希望这会有所帮助。

关于php - 在 Magento 中为产品设置特价日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3139648/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com