diff --git a/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/Filter/Edit/Tabs.php b/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/Filter/Edit/Tabs.php
index b4f166e..cdef0b3 100644
--- a/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/Filter/Edit/Tabs.php
+++ b/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/Filter/Edit/Tabs.php
@@ -71,7 +71,8 @@ protected function _beforeToHtml()
'title' => __('Stock & Conditions'),
'active' => true,
'group_code' => self::BASIC_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('main')
+ 'content' => $this->getChildHtml('main'),
+ 'class' => ''
]
);
@@ -80,9 +81,9 @@ protected function _beforeToHtml()
[
'label' => __('Variants & Types'),
'title' => __('Variants & Types'),
-// 'active' => true,
'group_code' => self::ADVANCED_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('types')
+ 'content' => $this->getChildHtml('types'),
+ 'class' => ''
]
);
@@ -91,10 +92,10 @@ protected function _beforeToHtml()
[
'label' => __('Visibility'),
'title' => __('Visibility'),
-// 'active' => true,
'group_code' => self::BASIC_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('visibility')
- ]
+ 'content' => $this->getChildHtml('visibility'),
+ 'class' => ''
+ ]
);
return parent::_beforeToHtml();
diff --git a/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/General/Edit/Tabs.php b/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/General/Edit/Tabs.php
index a13d31f..6ad07d3 100644
--- a/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/General/Edit/Tabs.php
+++ b/src/Nostress/Koongo/Block/Adminhtml/Channel/Profile/General/Edit/Tabs.php
@@ -71,7 +71,8 @@ protected function _beforeToHtml()
'title' => __('Attributes Mapping'),
'active' => true,
'group_code' => self::BASIC_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('main')
+ 'content' => $this->getChildHtml('main'),
+ 'class' => ''
]
);
$this->addTab(
@@ -79,9 +80,9 @@ protected function _beforeToHtml()
[
'label' => __('Shipping Cost'),
'title' => __('Shipping Cost'),
- //'active' => true,
'group_code' => self::BASIC_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('shipping_cost')
+ 'content' => $this->getChildHtml('shipping_cost'),
+ 'class' => ''
]
);
@@ -90,9 +91,9 @@ protected function _beforeToHtml()
[
'label' => __('Stock Status Values'),
'title' => __('Stock Status Values'),
- //'active' => true,
'group_code' => self::ADVANCED_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('stock')
+ 'content' => $this->getChildHtml('stock'),
+ 'class' => ''
]
);
@@ -101,9 +102,9 @@ protected function _beforeToHtml()
[
'label' => __('Price and Date'),
'title' => __('Price and Date'),
- //'active' => true,
'group_code' => self::ADVANCED_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('price')
+ 'content' => $this->getChildHtml('price'),
+ 'class' => ''
]
);
@@ -112,9 +113,9 @@ protected function _beforeToHtml()
[
'label' => __('Feed File'),
'title' => __('Feed File'),
- //'active' => true,
'group_code' => self::ADVANCED_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('file')
+ 'content' => $this->getChildHtml('file'),
+ 'class' => ''
]
);
@@ -123,9 +124,9 @@ protected function _beforeToHtml()
[
'label' => __('Sort Products'),
'title' => __('Sort Products'),
- //'active' => true,
'group_code' => self::ADVANCED_TAB_GROUP_CODE,
- 'content' => $this->getChildHtml('sort')
+ 'content' => $this->getChildHtml('sort'),
+ 'class' => ''
]
);
@@ -134,9 +135,9 @@ protected function _beforeToHtml()
[
'label' => __('Category'),
'title' => __('Category'),
- //'active' => true,
'content' => $this->getChildHtml('category'),
- 'group_code' => self::ADVANCED_TAB_GROUP_CODE
+ 'group_code' => self::ADVANCED_TAB_GROUP_CODE,
+ 'class' => ''
]
);