メインメニュー
ログイン
ユーザ名:

パスワード:


パスワード紛失

新規登録
My Links
メイン
   Amaxoop系共通
     「This item is currently not available by this merchant.」について
新規スレッド作成画面へ

フラット表示 前のトピック | 次のトピック
投稿者 スレッド
koji
投稿日時: 2005-1-17 0:42
長老
登録日: 2004-12-5
居住地:
投稿: 262
Re: 「This item is currently not available by this merchant.」について
taquinoさん、返信ありがとうございます。

せっかく教えていただきましたが、PHPプログラミング・スキルがないので、現時点ではデフォルトのまま利用させていただき、教えていただいたことを参考にスキルアップしてから試してみます。

・・・といいつつ、ecs.phpを拝見したところ、「function is_it_onsale($item)」に

引用:

(strpos($item['Availability'], '現在お取り扱いできません') > 0)




という行がありますが、これが機能していないだけ・・・ みたいな話だったりしませんでしょうか?

引用:

function is_it_onsale($item) {
if ((!isset($item['FormattedPrice']))
|| ($item['FormattedPrice'] == '')
|| ($item['FormattedPrice'] == '¥ 104,999,999')
|| (strpos($item['Availability'], 'not available') > 0)
|| (strpos($item['Availability'], 'Out of Stock') > 0)
|| (strpos($item['Availability'], '現在お取り扱いできません') > 0)
|| (strpos($item['Availability'], '在庫切れ') > 0) )
{
return 0;
} else {
return 1;
}
}


上で赤字にした部分が不要のような気がしたのですが・・・(そうじゃないと青字の部分に該当する最初の括弧がないような気が・・・)

間違っていましたら、すみません!

【追伸】
・・・実際に上記の赤字の部分を削除したらページが真っ白になっちゃいますね。つまり、必要ってことですね。大変失礼いたしました。

となると、この「not available => 現在お取り扱いできません」はどういう場合に変換されるんだろう・・・
返信
フラット表示 前のトピック | 次のトピック

題名 投稿者 日時
   「This item is currently not available by this merchant.」について koji 2005-1-16 21:26
     Re: 「This item is currently not available by this merchant.」について taquino 2005-1-17 0:21
     » Re: 「This item is currently not available by this merchant.」について koji 2005-1-17 0:42
         Re: 「This item is currently not available by this merchant.」について taquino 2005-1-17 1:01
           Re: 「This item is currently not available by this merchant.」について koji 2005-1-17 1:33
             Re: 「This item is currently not available by this merchant.」について taquino 2005-1-17 19:07
               Re: 「This item is currently not available by this merchant.」について ゲスト 2005-1-17 21:18
                 Re: 「This item is currently not available by this merchant.」について koji 2005-1-17 21:19
                   Re: 「This item is currently not available by this merchant.」について taquino 2005-1-17 23:23
                     Re: 「This item is currently not available by this merchant.」について ゲスト 2005-1-18 9:29
                       Re: 「This item is currently not available by this merchant.」について koji 2005-1-18 9:52
                         Re: 「This item is currently not available by this merchant.」について taquino 2005-1-18 22:40
                           Re: 「This item is currently not available by this merchant.」について koji 2005-1-19 1:06

新規スレッド作成画面へ