Commit 446efeebb169b4de747fc034e126579945cdfcef
1 parent
f57afab3
SEO
Showing
8 changed files
with
46 additions
and
15 deletions
Show diff stats
backend/views/category/_form.php
... | ... | @@ -2,6 +2,8 @@ |
2 | 2 | |
3 | 3 | use yii\helpers\Html; |
4 | 4 | use yii\widgets\ActiveForm; |
5 | +use mihaildev\ckeditor\CKEditor; | |
6 | +use mihaildev\elfinder\ElFinder; | |
5 | 7 | use common\modules\file\widgets\ImageUploader; |
6 | 8 | use kartik\select2\Select2; |
7 | 9 | |
... | ... | @@ -63,7 +65,17 @@ use kartik\select2\Select2; |
63 | 65 | |
64 | 66 | <?= $form->field($model, 'meta_robots')->textInput(['maxlength' => true]) ?> |
65 | 67 | |
66 | - <?= $form->field($model, 'seo_text')->textarea(['rows' => 6]) ?> | |
68 | + <?= $form->field($model, 'h1')->textInput(['maxlength' => true]) ?> | |
69 | + | |
70 | + <?= $form->field($model, 'seo_text')->widget(CKEditor::className(), | |
71 | + [ | |
72 | + 'editorOptions' => ElFinder::ckeditorOptions('elfinder',[ | |
73 | + 'preset' => 'full', //разработанны стандартные настройки basic, standard, full данную возможность не обязательно использовать | |
74 | + 'inline' => false, //по умолчанию false]), | |
75 | + 'filebrowserUploadUrl'=>Yii::$app->getUrlManager()->createUrl('file/uploader/images-upload') | |
76 | + ] | |
77 | + ) | |
78 | + ]) ?> | |
67 | 79 | |
68 | 80 | <?php if (!empty($model) && $model->depth == 2) :?> |
69 | 81 | <?= $form->field($model, 'populary')->checkbox() ?> | ... | ... |
backend/views/category/view.php
common/config/main.php
common/modules/product/models/Category.php
... | ... | @@ -86,7 +86,7 @@ class Category extends \yii\db\ActiveRecord |
86 | 86 | return [ |
87 | 87 | [['name'], 'string'], |
88 | 88 | [['parent_id', 'depth', 'category_name_id', 'product_unit_id'], 'integer'], |
89 | - [['path', 'meta_desc', 'seo_text'], 'string'], | |
89 | + [['path', 'meta_desc', 'h1', 'seo_text'], 'string'], | |
90 | 90 | [['meta_title', 'image'], 'string', 'max' => 255], |
91 | 91 | [['meta_robots'], 'string', 'max' => 50], |
92 | 92 | [['alias', 'name'], 'string', 'max' => 250], |
... | ... | @@ -113,6 +113,7 @@ class Category extends \yii\db\ActiveRecord |
113 | 113 | 'meta_title' => Yii::t('product', 'Meta Title'), |
114 | 114 | 'meta_desc' => Yii::t('product', 'Meta Desc'), |
115 | 115 | 'meta_robots' => Yii::t('product', 'Meta Robots'), |
116 | + 'h1' => Yii::t('product', 'h1'), | |
116 | 117 | 'seo_text' => Yii::t('product', 'Seo Text'), |
117 | 118 | 'product_unit_id' => Yii::t('product', 'Product Unit ID'), |
118 | 119 | 'alias' => Yii::t('product', 'Alias'), | ... | ... |
common/modules/product/widgets/views/products_block.php
... | ... | @@ -4,7 +4,14 @@ use yii\web\View; |
4 | 4 | <?php if(!empty($products)) :?> |
5 | 5 | <div class="_prd_spec-wr"> |
6 | 6 | <div class="special-products products<?= (!empty($class) ? ' '. $class : '')?>"> |
7 | - <h3><?= $title?></h3> | |
7 | + <span style="text-align: center; | |
8 | + text-transform: uppercase; | |
9 | + font-size: 20px; display: block; | |
10 | + -webkit-margin-before: 1em; | |
11 | + -webkit-margin-after: 1em; | |
12 | + -webkit-margin-start: 0px; | |
13 | + -webkit-margin-end: 0px; | |
14 | + font-weight: bold;"><?= $title?></span> | |
8 | 15 | <div class="owl-carousel"> |
9 | 16 | <?php foreach($products as $product) :?> |
10 | 17 | <?= $this->render('product_smart', ['product' => $product]);?> | ... | ... |
frontend/views/basket/_popup.php
... | ... | @@ -6,7 +6,13 @@ use yii\helpers\Url; |
6 | 6 | <div class="item_added_win"> |
7 | 7 | <a href="#" class="black_close"></a> |
8 | 8 | <div class="block_content"> |
9 | - <h2>Товар добавлен в корзину</h2> | |
9 | + <span style="display: block; | |
10 | + font-size: 1.5em; | |
11 | + -webkit-margin-before: 0.83em; | |
12 | + -webkit-margin-after: 0.83em; | |
13 | + -webkit-margin-start: 0px; | |
14 | + -webkit-margin-end: 0px; | |
15 | + font-weight: bold;">Товар добавлен в корзину</span> | |
10 | 16 | <div class="items"> |
11 | 17 | <div class="basket_items"> |
12 | 18 | ... | ... |
frontend/views/catalog/products.php
... | ... | @@ -7,15 +7,20 @@ use yii\helpers\Url; |
7 | 7 | use yii\widgets\Breadcrumbs; |
8 | 8 | use yii\web\View; |
9 | 9 | use common\modules\product\helpers\ProductHelper; |
10 | +use frontend\widgets\Seo; | |
11 | +//$this->title = $category->categoryName->value; | |
12 | +$this->params['seo']['title'] = !empty($category->meta_title) ? $category->meta_title : $category->name; | |
13 | +$this->params['seo']['h1'] = !empty($category->h1) ? $category->h1 : $category->name; | |
14 | +$this->params['seo']['seo_text'] = $category->seo_text; | |
15 | +$this->params['seo']['description'] = $category->meta_desc; | |
16 | +$this->params['seo']['meta'] = $category->meta_robots; | |
10 | 17 | |
11 | -$this->title = $category->categoryName->value; | |
12 | 18 | //foreach($category->getParents()->all() as $parent) { |
13 | 19 | // $this->params['breadcrumbs'][] = ['label' => $parent->categoryName->value, 'url' => ['catalog/category', 'category' => $parent]]; |
14 | 20 | //} |
15 | 21 | $this->params['breadcrumbs'][] = ['label' => 'Каталог', 'url' => ['catalog/category']]; |
16 | 22 | $this->params['breadcrumbs'][] = $category->categoryName->value; |
17 | 23 | |
18 | -$this->params['seo']['title'] = $category->name; | |
19 | 24 | |
20 | 25 | $this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.css')); |
21 | 26 | $this->registerCssFile (Yii::getAlias('@web/css/ion.rangeSlider.skinHTML5.css')); |
... | ... | @@ -155,7 +160,7 @@ $this->registerJsFile(Yii::getAlias('@web/js/ion.rangeSlider.js'),[ |
155 | 160 | </div> |
156 | 161 | |
157 | 162 | <div class="content"> |
158 | - <h1><?= $category->name ?></h1> | |
163 | + <h1><?= Seo::widget([ 'row'=>'h1'])?></h1> | |
159 | 164 | <div class="sort_menu"> |
160 | 165 | |
161 | 166 | <div class="sort_block"> |
... | ... | @@ -188,8 +193,12 @@ $this->registerJsFile(Yii::getAlias('@web/js/ion.rangeSlider.js'),[ |
188 | 193 | <?php endif?> |
189 | 194 | <div class="both"></div> |
190 | 195 | </div> |
196 | + <div class="text"> | |
197 | + <?= Seo::widget([ 'row'=>'seo_text'])?> | |
198 | + </div> | |
191 | 199 | <div class="both"></div> |
192 | 200 | |
201 | + | |
193 | 202 | <?= \common\modules\product\widgets\specialProducts::widget(['type' => 'promo'])?> |
194 | 203 | <?= \common\modules\product\widgets\specialProducts::widget(['type' => 'new'])?> |
195 | 204 | <?= \common\modules\product\widgets\specialProducts::widget(['type' => 'top'])?> | ... | ... |
frontend/widgets/Seo.php
... | ... | @@ -42,7 +42,7 @@ class Seo extends Widget |
42 | 42 | foreach ($seoData as $key => $value) { |
43 | 43 | $this->$key = $value; |
44 | 44 | } |
45 | - | |
45 | + | |
46 | 46 | |
47 | 47 | switch ($this->row) { |
48 | 48 | case self::SEO_TEXT: |
... | ... | @@ -108,7 +108,7 @@ class Seo extends Widget |
108 | 108 | 'content' => $meta |
109 | 109 | ]); |
110 | 110 | |
111 | - } else if ( | |
111 | + } else if ( | |
112 | 112 | isset($filter['brands']) && count($filter['brands']) > 1 |
113 | 113 | || isset($filter['options']["pol"]) && count($filter['options']["pol"]) > 1 |
114 | 114 | || isset($filter['options']["naznacenie"]) && count($filter['options']["naznacenie"]) > 1 | ... | ... |