0

Oscommerceで製品リストを再構築する方法を知っている人はいますか(STSテンプレートを使用)?

出力のスタイルをうまく設定できますが、テーブル (つまり<tr> <td> </td> </tr>) レイアウトはバックエンドで自動作成されるため、行構造を変更する場所がわかりません。

確かにこれをカスタマイズする方法があるはずですか?

何か案は?

4

1 に答える 1

1

The layout of the product listing is actually defined in includes/classes/boxes.php

class productListingBox is the one that generates the table for product listings. The actual table layout elements (the tr, td etc tags) are generated in the extended class tableBox, so look into that (yes, the mixing of code and html tags is THAT horrible).

If you don't want to alter the table layout, but just change the information in table cells, then you'll find that it's loaded in includes/modules/product_listing.php

P.S. The code that I looked at didn't have STS installed, so there is a slight chance that STS generates the table somewhere else...

于 2009-12-02T16:29:33.103 に答える