catalog_product_save_before 이벤트에서 새 관찰자를 작성하는 방법
이 코드를 사용하여 catalog_product_save_before 이벤트에서 새 관찰자를 작성하여 제품의 메타 설명 자동 생성을 원합니다. public function autoMetaDescription($observer) { $product = $observer->getEvent()->getProduct(); $metaDescription = "Buy ". $product->getName()." for Rs ".number_format($product->getFinalPrice(), 2)." at sitename.com | New Book | Authorised seller for ". $product->getAttributeText('publisher'); $product->setMetaDescription($metaDescription); } 어떤 폴더 / 파일에서 코드를 작성해야합니까?