Drupal 或 OSCommerce 中的自定义产品?

2021-12-29 00:00:00 php drupal oscommerce

我看起来高高低低.我想我不是在寻找合适的东西.

I've looked high and low. I think I'm not searching for the right stuff.

我想知道一个用于 drupal 或 oscommerce 的模块或插件,可以让您构建自己的产品".IE.客户可以访问该站点,并说他想要 PC A,具有 X 容量的 RAM 和 Z 大小的硬盘等.

I want to know of a module, or plugin for either drupal or oscommerce that will allow you to "build your own products". I.e. A customer can go on the site, and say he wants PC A, with X amount of RAM, and Z sized harddrive etc.

  1. 是否有用于 oscommerce 或 drupal 的插件或模块可以执行此操作?
  2. 如果没有,关于如何在 Drupal 中为节点分配关系的任何提示?
  3. 如果没有,有关如何使用 OSCommerce 实现此目的的任何提示?

推荐答案

经过几分钟的研究,我发现了一些 Drupal 模块,您可以将它们组合在一起以获得您想要的.我不是特别熟悉 Ubercart 的深度,这正是 我 最初的方法.

With a couple minutes of research, I've found a few Drupal modules you might pound together to get what you want. I am not particularly familiar with Ubercart's depths, this is just what my initial approach would be.

Ubercart、UC 自定义价格、UC 节点结帐和CCK(用于节点引用).

Ubercart, UC Custom Price, UC Node Checkout, and CCK (for nodereference).

Ubercart 是 Drupal 的主要电子商务解决方案.UC Node Checkout 允许您在创建购物车时将其添加到购物车中.节点引用允许用户在创建自定义产品节点时引用现有产品.最后,UC 自定义价格应该允许您通过从引用的组件产品中提取价格信息来动态设置自定义产品的价格.

Ubercart is the primary e-commerce solution for Drupal. UC Node Checkout allows you to add a node to a shopping cart when it is created. Node References allow users to reference existing products when they create their custom product node. And lastly, UC Custom Price should allow you to dynamically set the custom product's price by extracting price information from the referenced component products.

相关文章