ZenCart Products All의 H1 텍스트 변경방법
index.php?main_page?products_all의 <h1 id="allProductsDefaultHeading">Products</h1> 의 텍스트를 변경하는 방법. 검색해보면 일반적인 방법들 많이 나와있지만 이렇게 되어 있는 경우도 있어 정리한다. 위의 h1의 텍스트는 /includes/templates/templates_default/tpl_products_all_default.php에 아래와 같이 되어 있다. <h1 id="allProductsDefaultHeading"><?php echo HEADING_TITLE; ?></h1> 그렇다면 HEADING_TITLE 상수가 정의되어 있는 곳을 찾아서 문구를 변경해야 하는데 이 HEADING_TITLE 이 정의되어 […]