diff --git a/app/Config/Constants.php b/app/Config/Constants.php
index 73ef039..8b6fbd1 100644
--- a/app/Config/Constants.php
+++ b/app/Config/Constants.php
@@ -240,6 +240,20 @@ define('CLASS_ICONS', [
'CARD' => '',
'DEPOSIT' => '',
]);
+define('CLASS_TOP_BANNER', [
+ 'USER' => '
',
+ 'USERSNS' => '
',
+ 'BOARD' => '
',
+ 'SITEPAGE' => '
',
+ 'CATEGORY' => '
',
+ 'PRODUCT' => '
',
+ 'ORDER' => '
',
+ 'PAYMENT' => '
',
+ 'ECOMMERCE' => '
',
+ 'CART' => '
',
+ 'CARD' => '
',
+ 'DEPOSIT' => '
',
+]);
define('AUDIOS', [
'Alram_GetEmail' => '',
]);
diff --git a/app/Controllers/Front/FrontController.php b/app/Controllers/Front/FrontController.php
index 30af901..f142507 100644
--- a/app/Controllers/Front/FrontController.php
+++ b/app/Controllers/Front/FrontController.php
@@ -30,7 +30,7 @@ abstract class FrontController extends BaseController
{
$this->_category ?: throw new \Exception("분류를 지정하지 않으셨습니다.");
$this->_viewDatas['category'] = $this->getCategoryModel()->getEntity([$this->getCategoryModel()->getPrimaryKey() => $this->_category]);
- $this->_viewDatas['parent_category'] = $this->getCategoryModel()->getEntity([$this->getCategoryModel()->getPrimaryKey() => $this->_viewDatas['category']->getHierarchy_ParentUID()]);
+ // $this->_viewDatas['parent_category'] = $this->getCategoryModel()->getEntity([$this->getCategoryModel()->getPrimaryKey() => $this->_viewDatas['category']->getHierarchy_ParentUID()]);
switch ($action) {
case 'insert':
$category_field = CATEGORY_ROLE_FIELDS['WRITE'];
diff --git a/app/Views/layouts/front.php b/app/Views/layouts/front.php
index c110461..8b0fe17 100644
--- a/app/Views/layouts/front.php
+++ b/app/Views/layouts/front.php
@@ -33,9 +33,7 @@