問題タブ [price]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
104 参照

php - PHP/MySQL フォーマットされた価格を変換して保存する

ユーザーが提出したすべての価格をMySQLに保存する必要があります。ユーザーが送信した価格には、次の形式を含めることができます。

MySQLには、タイプの「価格」という名前の列がありますdecimal

私の質問は、これらの形式を変換decimalしてデータベースに保存するにはどうすればよいですか?または、値を「ARG簡易形式」に変換してすべてをとして保存するにはどうすればよいvarcharですか? すべて同じ形式 (小数点以下 2 桁) である必要があります。

0 投票する
1 に答える
147 参照

magento - Magento - 価格ルール「価格 X で 2 個購入」

次のルールをどのように作成できますか。

商品:Tシャツは5色5サイズ展開。構成可能な製品としてセットアップされます。

1つ購入で120.- 2つ購入で200.-

2つ購入するということは、色が赤でサイズが大きいだけでなく、2つ購入することを意味します。赤/大を1つ、青/小を1つ購入する場合にも機能するはずです。

拡張機能を購入せずに設定する方法はありますか? 私はMagento 1.9.2.3で作業しています

0 投票する
2 に答える
9257 参照

attributes - Magento 2:製品リストで構成可能な価格を取得する方法

価格商品の入手方法

シンプルな製品で:

$oldPrice= $_product->getPrice(); $newPrice= $_product->getSpecialPrice();

正しい結果を返します

構成可能な製品の場合:

$oldPrice= $_product->getPrice(); //return Null $newPrice= $_product->getSpecialPrice(); // return Null

1 つの構成可能な製品と 2 つの単純な製品があります。

TestCon1 Simple1: 価格 120$. 特別価格: 100$

simple2: 価格 120$. 特別価格: 90$

構成可能なリターンの価格を取得する必要があります: TestCon1 Price 120$。特別価格: 90 ドル。

私が使う$oldpriceConf= $_product->getFinalPrice(); // retunr 100$

0 投票する
1 に答える
3859 参照

php - Woocommerce - カテゴリー (アーカイブ) ページのみに最低価格を表示

個別の商品ページでは価格帯を表示し続けながら、カテゴリーページでは価格帯ではなく最低価格を表示しようとしています。

私は他の誰かの質問からこの答えを見つけました:

そしてそれは機能しますが、コードを に入れると、functions.phpサイト全体に適用されます。カテゴリページにのみ適用したい。

また、このコードを使用すると、価格が 1 つしかないアイテムの価格が表示されなくなります。

私に何ができる?

これが私が意味することのスクリーン ショットです: 現在のカテゴリページのスクリーンショット

0 投票する
2 に答える
55 参照

php - if($p > 0 && $p <= 1 は小数では機能しません

関数で価格を計算するためのこのコードを入れましたgetPrecio

価格が 1 未満の商品 (0.2 や 0.02 など) の場合、この関数は機能しません。

なんで?

これはそのコードです:

そのPHPコード。それがうまくいかないと私が言うとき、それは計算された価格を修正していないということです.

これを試して、計算しないでください

更新されたコード

更新、0.02 から 0.02 のフィールド CSV を変更すると、コードが機能します。ただし、0,02 で作業するには正しいコードが必要です

0 投票する
0 に答える
499 参照

wordpress - Woocommerce のグループ化された価格設定を無効にする

グループ化された製品の価格設定を無効にする Woocommerce コードを探しています。無効にする場所がわかりません。助言がありますか?

0 投票する
0 に答える
79 参照

woocommerce - Woocommerce 追加料金

WooCommerce の仕組みは良いです 基本価格を設定してから追加価格を設定できる方法はないかと考えていました

例えば

基本価格: $25

サイズ

  • 小: $0 を追加

  • 大:20ドル追加

0 投票する
0 に答える
3635 参照

wordpress - Display Regular & Sale Price for variable products on shop page - WooCommerce

I have a website with all the products having 2 variation attributes.

  1. Normal Item
  2. Exchange Item

Normal Item variation has a "Regular Price" & "Sale Price" compulsory. Exchange Item variation has only 1 regular price. I want to show all the 3 prices on the shop page where all the products are seen. I found the following code in woocommerce/templates/loops/price.php

The same code is fetching different results for different themes, I dont understand what is causing this. For some themes it shows range of prices. For my theme this is displaying only the lowest price out of the 2 variations. How can I show something like this:

  1. Regular Price: 1000 (strikethrough)
  2. Sale Price : 800
  3. Exchange Price: 600

Number one and two being the regular & sale price of variation 1 of the product while number 3 is the regular price of variation 2.

Follwing is just and example of how I want it to be. striked is the regular price, 'with old battery' is the exchange price, and 'without old battery' is Regular price from normal item variation. enter image description here


EDIT: So I checked function.php which has this code

Gets me only exchange price values, I would like to get all.