2017-03-27 5 views
1

注文確認メールでより多くの商品数を確認したいと思います。Prestashop:mailalertモジュールを変更して、目に見える商品数を確認してください。

私はmailalerts.php

<td style="padding:0.6em 0.4em; font-weight: bold; text-align:center;"><big><big>'.(int)$product['product_quantity'].'</big></big></td> 

を追加しましたが、私はそれを最適化したいと思います。

セルの中の文字の色を値に応じて変更したいと思います。

数が数> 1は 赤にする必要がある場合1は 黄色であるべきである場合は、これを設定することができ、私はこのコードを見つけましたが、私は私のファイルの中にそれを使用することはできません、おかげ

$('#mytable tr td').each(function(){ 

if($(this).text() > 1)$(this).css('background-color','red'); 
}); 

おかげ

+0

私の回答があなたの問題を解決しましたか? – JazZ

答えて

0

ternary conditional連結:

<td style="padding:0.6em 0.4em; text-align:center;' . ((int)$product['product_quantity'] == 1 ? "text-color: yellow;" : "text-color: red;") . '"><big><big>'.(int)$product['product_quantity'].'</big></big></td> 

希望すると助かります。

関連する問題