Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のMagento1.6.2.0インストールでは、現在、関連製品が並べ替え順に昇順で並べ替えられています(このQ / Aのおかげです)。そこに詳述されている答えはうまく機能しますが、ソート順の値がNULLの製品を最後にリストするか、完全に除外することをお勧めします。addAttributeToSelect()で遊んだことがありますが、失敗しました。
これは最善の解決策ではないかもしれませんが、related.phtmlファイルにifステートメントを追加しました。
<?php foreach($this->getItems() as $_item): ?> // add the if statement immediately after the foreach loop <?php if ( !is_null($_item->getPosition()) ): ?> . . . . <?php endif; ?> <?php endforeach; ?>