每小时变化的产品的动态价格

发布于 2024-11-04 04:00:31 字数 382 浏览 0 评论 0原文

我正在运营一个银条网站。白银的价格每小时都在变化。白银价格存储在变量中。我正在寻找一个用于 WordPress 的购物车,它可以执行以下操作:

例如,我有一个产品名称 Silver Coin:

Silver 销售价格 目前为 $25.5 --->购物车应该从 PHP 变量中选择此值,但不要将其输出为产品的实际价格

产品价格 将是 25.5 美元的 1.2% -------- ------> 这应该是产品的实际价格,输出作为产品价格

如何获得此功能以及使用哪个购物车?我正在使用 WP-eCommerce 插件,任何人都可以帮忙。

I am running a silver bullion website. The price of silver changes every hour. The silver price is stored in a variable. I am searching for a shopping cart for wordpress that can do the following things:

For example I have a product name Silver Coin:

Silver Selling price at the present hour is $25.5
---> The cart Should pick this value from a PHP variable But dont output it as actual price of the product

The product price will be 1.2% of $25.5 ---------------->
This Should be the actual price of product and output as the product price

How to get this functionality and with which shopping cart? I am using WP-eCommerce Plugin, anyone can help please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失去的东西太少 2024-11-11 04:00:31

不久前我做了类似的事情,而且相当简单。

  1. 在主题 function.php 文件中创建一个函数,该函数返回最新的白银价格。如果您只想每小时提取一次,那么此函数可以检查上次检索时间的时间戳,然后从数据库返回价格或检索新价格并更新数据库。
  2. WP-eCommerce 支持模板,找到显示您的产品的正确模板文件,并在显示价格的循环内将其函数调用替换为您自己的函数调用。我认为该函数被称为 wpsc_the_product_price()

如果例如您的某些价格是白银价格的 1.5%,而其他价格是 1.2%,那么您可以设置产品价格中的百分比。然后,不要替换模板文件中的函数调用,而是使用它来检索产品百分比,并与白银价格一起计算产品价格。

I did something similar not long ago and it was fairly straight forward.

  1. Create a function in your themes function.php file which returns the latest price of silver. If you only want to pull it in every hour then this function could check a time stamp of when it was last retrieved and then either return the price from the database or retrieve the new price and update the database.
  2. WP-eCommerce supports templates, find the correct template file which displays your products and inside the loop where the price is being displayed replace their function call with your own. I think the function is called, wpsc_the_product_price()

If for example some of your prices are 1.5% of the silver price and others are 1.2% then you could set the percentage in the product price. Then instead of replacing the function call in the template file use it to retrieve the product percentage and along with your silver price calculate the product price.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文