diff --git a/frontend/views/catalog/product.php b/frontend/views/catalog/product.php
index 20ef4f1..e82ea59 100755
--- a/frontend/views/catalog/product.php
+++ b/frontend/views/catalog/product.php
@@ -494,15 +494,18 @@
Бренд |
- = !empty($product->brand) ? Html::a($product->brand->name, [
- 'catalog/category',
- 'category' => $category,
- 'filters' => [
- 'brands' => [
- $product->brand->alias
- ]
- ]
- ]) : '' ?> |
+ brand) ? Html::a($product->brand->name, [
+// 'catalog/category',
+// 'category' => $category,
+// 'filters' => [
+// 'brands' => [
+// $product->brand->alias
+// ]
+// ]
+// ]) : '';
+ echo $product->brand->name;
+ ?> |
getActiveProperties($category->category_id) as $group) {
?>
@@ -511,20 +514,20 @@
_options as $option) {
- if ($group->is_filter) {
- echo Html::a(' ' . $option->ValueRenderHTML,
- [
- 'catalog/category',
- 'category' => $category,
- 'filters' => [
- $group->alias => [
- $option->alias
- ]
- ]
- ]);
- } else {
+// if ($group->is_filter) {
+// echo Html::a(' ' . $option->ValueRenderHTML,
+// [
+// 'catalog/category',
+// 'category' => $category,
+// 'filters' => [
+// $group->alias => [
+// $option->alias
+// ]
+// ]
+// ]);
+// } else {
echo ' ', $option->ValueRenderHTML;
- }
+// }
}
?>
|
--
libgit2 0.21.4