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.
配送方法の料金が最初に呼び出されるのは、magentos php ソースコードのどこですか? 言い換えれば、配送方法の情報 (フラットレート、テーブルレート、送料無料) が最初にデータベースから PHP コードに抽出されるのはいつですか? デフォルトの配送方法を削除し、ショッピング カートでのテスト用に独自の配送方法のみを表示したいと考えています。
すべての Magento のデフォルトの配送方法は、データベースからモデルを使用して料金を引き出します。
例: フラットレートの配送方法が app/code/core/Mage/Shipping/Model/Carrier/Flatrate.php に移動するよりも料金を引き出す場所を確認したい場合。
このファイルにより、データベースから定額配送方法の料金が取得されます。
ありがとう!