Перейти к содержимому


Изменение Блоков

Дизайн

  • Авторизуйтесь для ответа в теме
Сообщений в теме: 2

#1 Максим судариков

Максим судариков

    Пользователь

  • Пользователи
  • PipPip
  • 33 сообщений

Отправлено 14 Март 2018 - 02:18

Добрый день! Помогите убрать пару блоков:

1) Убрать на главной карточки (Показано на скрине №1)
2) Убрать соц. сети (Показано на скрине №2)
3) На вкладке каталог убрать карточки (Показано на скрине №3)
4) В личном кабинете убрать "Юридическая информация" и "Банковские реквизиты" (Показано на скрине №4)

Прикрепленные изображения

  • Снимок экрана (26)_LI.jpg
  • Снимок экрана (27)_LI.jpg
  • Снимок экрана (28)_LI.jpg
  • Снимок экрана (29)_LI.jpg


#2 Vaccina

Vaccina

    Активный участник

  • Модераторы
  • 24 353 сообщений

Отправлено 14 Март 2018 - 02:54

Здравствуйте.

Зайдите в раздел Сайт - Редактор шаблонов - HTML - найдите и удалите:
<!-- Баннеры -->
	  {% IF index_page %}
	  <div id="topsl">
		<div class="container">
		  <div class="policy_shop">
			<div class="row">
			  <div class="col-sm-4 col-xs-12 policy">
				<div class="ca-content">
				  <em class="fa fa-truck">&nbsp;</em>
				  <h4 class="ca-main">Бесплатная доставка</h4>
				  Доставка по городу и области Бесплатна!
				</div>
			  </div>
			  <div class="col-sm-4 col-xs-12 policy">
				<div class="ca-content">
				  <em class="fa fa-mail-reply">&nbsp;</em>
				  <h4 class="ca-main">30 дней гарантии</h4>
				  Вы можете вернуть товар в течении 30 дней после получения заказа.
				</div>
			  </div>
			  <div class="col-sm-4 col-xs-12 policy">
				<div class="ca-content">
				  <em class="fa fa-comments">&nbsp;</em>
				  <h4 class="ca-main">Прием заказов 24/7</h4>
				  Оформите заказ в интернет-магазине "{SETTINGS_STORE_NAME}" Прямо сейчас!
				</div>
			  </div>
			</div>
		  </div>
		</div>
	  </div>
	  {% ENDIF %}


далее найдите и удалите:
<ul class="sns-social">
				<li><a href="https://facebook.com/" title="FaceBook.com" class="fa fa-facebook" target="_self">&nbsp;</a></li>
				<li><a href="https://vk.com/" title="VK.com" class="fa fa-vk" target="_self">&nbsp;</a></li>
				<li><a href="https://youtube.com/" title="YouTube.com" class="fa fa-youtube" target="_self">&nbsp;</a></li>
				<li><a href="https://twitter.com/" title="Twitter.com" class="fa fa-twitter" target="_self">&nbsp;</a></li>
			  </ul>

далее зайдите в шаблон Товары - найдите:
<!-- В категориях используем стандартный алгоритм отображения товаров -->
{% ELSE %}
  
  <!-- Блок навигации по категориям, вложенным в текущую категорию -->
  {% IF goods_empty=0 %}
	<div class="categories">
	  {% FOR nested_categories_list %}
		<div class="item col-sm-4 col-sms-6 col-smb-12">
		  <a href="{nested_categories_list.URL}" title="Перейти к категории &laquo;{nested_categories_list.NAME}&raquo;" class="image goods-cat-image-medium">
			<i class="fa fa-eye"></i>
			<img class="goods-cat-image-medium" src="{% IF nested_categories_list.IMAGE_EMPTY %}{ASSETS_IMAGES_PATH}no-photo-small.png?design=dark{% ELSE %}{nested_categories_list.IMAGE_MEDIUM}{% ENDIF %}">
		  </a>
		  <a href="{nested_categories_list.URL}" title="Перейти к категории &laquo;{nested_categories_list.NAME}&raquo;" class="title">{nested_categories_list.NAME}</a>
		</div>
	  {% ENDFOR %}
	</div>
  {% ENDIF %}
	
  <!-- Если нет товаров, выводим сообщение пользователю -->
  {% IF goods_empty %}
	{% IF goods_filters_empty %}
	  <p class="attention">Нет товаров в выбранной категории</p>
	{% ELSE %}
	  <p class="attention">Нет товаров для выбранных условий</p>
	{% ENDIF %}
  {% ENDIF %}
  <!-- /Если нет товаров, выводим сообщение пользователю -->


замените на:
<!-- В категориях используем стандартный алгоритм отображения товаров -->
{% ELSE %}
	
  <!-- Если нет товаров, выводим сообщение пользователю -->
  {% IF goods_empty %}
	{% IF goods_filters_empty %}
	  <p class="attention">Нет товаров в выбранной категории</p>
	{% ELSE %}
	  <p class="attention">Нет товаров для выбранных условий</p>
	{% ENDIF %}
  {% ENDIF %}
  <!-- /Если нет товаров, выводим сообщение пользователю -->

далее зайдите в шаблон ЛК Настройки пользователя - найдите и удалите:
<div class="col-sm-6 col-xs-12">
	  <div class="col-account">
		<h3>Юридическая информация</h3>
		<div class="form-list">
		  <div class="fields">
			<label for="sites_client_org_name">Наименование организации или ИП</label>
			<input id="sites_client_org_name" type="text" name="form[sites_client_org_name]"  value="{FORM_SITES_CLIENT_ORG_NAME}" minlength="5" class="required inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_org_inn">ИНН</label>
			<input id="sites_client_org_inn" type="text" name="form[sites_client_org_inn]"  value="{FORM_SITES_CLIENT_ORG_INN}" minlength="9" maxlength="12" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_org_ogrn">ОГРН</label>
			<input id="sites_client_org_ogrn" type="text" name="form[sites_client_org_ogrn]"  value="{FORM_SITES_CLIENT_ORG_OGRN}" minlength="13" maxlength="15" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_org_kpp">КПП</label>
			<input id="sites_client_org_kpp" type="text" name="form[sites_client_org_kpp]"  value="{FORM_SITES_CLIENT_ORG_KPP}" minlength="9" maxlength="9" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_org_okpo">ОКПО</label>
			<input id="sites_client_org_okpo" type="text" name="form[sites_client_org_okpo]"  value="{FORM_SITES_CLIENT_ORG_OKPO}" minlength="8" maxlength="10" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_org_address">Юридический адрес</label>
			<input id="sites_client_org_address" type="text" name="form[sites_client_org_address]"  value="{FORM_SITES_CLIENT_ORG_ADDRESS}" minlength="5" class="inputText">
		  </div>
		</div>
		<div class="buttons">
		  <button type="submit" title="Сохранить персональные настройки" class="button">Сохранить</button>
		</div>
	  </div>
	</div>
	<div class="col-sm-6 col-xs-12">
	  <div class="col-account">
		<h3>Банковские реквизиты</h3>
		<div class="form-list">
		  <div class="fields">
			<label for="sites_client_bank_account">Расчетный счет</label>
			<input id="sites_client_bank_account" type="text" name="form[sites_client_bank_account]"  value="{FORM_SITES_CLIENT_BANK_ACCOUNT}" minlength="13" maxlength="20" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_bank_bik">БИК</label>
			<input id="sites_client_bank_bik" type="text" name="form[sites_client_bank_bik]"  value="{FORM_SITES_CLIENT_BANK_BIK}" minlength="9" maxlength="9" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_bank_name">Название банка</label>
			<input id="sites_client_bank_name" type="text" name="form[sites_client_bank_name]"  value="{FORM_SITES_CLIENT_BANK_NAME}" minlength="5" class=" inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_bank_corr_account">Корреспондентский счет</label>
			<input id="sites_client_bank_corr_account" type="text" name="form[sites_client_bank_corr_account]"  value="{FORM_SITES_CLIENT_BANK_CORR_ACCOUNT}" minlength="13" maxlength="20" class="digits inputText">
		  </div>
		  <div class="fields">
			<label for="sites_client_bank_address">Адрес банка</label>
			<input id="sites_client_bank_address" type="text" name="form[sites_client_bank_address]"  value="{FORM_SITES_CLIENT_BANK_ADDRESS}" minlength="5" class=" inputText">
		  </div>
		</div>
		<div class="buttons">
		  <button type="submit" title="Сохранить персональные настройки" class="button">Сохранить</button>
		</div>
	  </div>
	</div>


далее зайдите в шаблон main.css - найдите и удалите:
#footer-middle ul.sns-social {color: #e1e1e1;font-size: 18px;}
#footer-middle ul.sns-social li {display: -moz-inline-stack;display: inline-block;vertical-align: middle;zoom: 1;padding: 3px;margin-right: 5px;overflow: hidden;}
#footer-middle ul.sns-social li .fa {width: 32px;height: 32px;border: 1px solid #9d9d9d;border-radius: 50%;line-height: 32px;text-align: center;display: block;position: relative;padding: 0px;}
#footer-middle ul.sns-social li .fa:before {display: block;}
#footer-middle ul.sns-social li .fa:hover {color: #fff;border: 1px solid #707070;background: #707070;padding: 0px;}
#footer-middle ul.sns-social li .fa:hover:before {-webkit-animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;-o-animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;}

далее найдите и удалите:
/*** Баннеры ***/
#topsl {border-top: 1px solid #3f3f3f;border-bottom: 1px solid #3f3f3f;padding: 30px 0;}
#topsl .policy_shop .policy {overflow: hidden;position: relative;transition: all 300ms linear 0s;text-align: center;}
#topsl .policy_shop .policy .fa {border: 1px solid #5b5b5b;background: #2a2a2a;font-size: 30px;transition: all 400ms linear 0s;width: 75px;height: 75px;border-radius: 50%;margin-bottom: 20px;color: #e4e4e4;}
#topsl .policy_shop .policy .fa:before {height: 100%;left: 0;line-height: 75px;position: absolute;top: 0;width: 100%;color: #707070;}
#topsl .policy_shop .policy:hover .fa {background: #707070;border-color: #707070;}
#topsl .policy_shop .policy:hover .fa:before {color: #fff;-webkit-animation: moveFromBottom 300ms ease;-o-animation: moveFromBottom 300ms ease;animation: moveFromBottom 300ms ease;}
#topsl .policy_shop .policy .ca-content .ca-main {color: #535353;margin-bottom: 15px;-webkit-transition: all 200ms linear;-o-transition: all 200ms linear;transition: all 200ms linear;}
#topsl .policy_shop .policy:hover .ca-content .ca-main {color: #fff;-webkit-animation: smallToBig 300ms ease;-o-animation: smallToBig 300ms ease;animation: smallToBig 300ms ease;}


#3 Максим судариков

Максим судариков

    Пользователь

  • Пользователи
  • PipPip
  • 33 сообщений

Отправлено 14 Март 2018 - 06:07

Просмотр сообщенияVaccina (14 Март 2018 - 02:54) писал:

Здравствуйте.

Зайдите в раздел Сайт - Редактор шаблонов - HTML - найдите и удалите:
<!-- Баннеры -->
{% IF index_page %}
<div id="topsl">
<div class="container">
<div class="policy_shop">
<div class="row">
<div class="col-sm-4 col-xs-12 policy">
<div class="ca-content">
<em class="fa fa-truck">&nbsp;</em>
<h4 class="ca-main">Бесплатная доставка</h4>
Доставка по городу и области Бесплатна!
</div>
</div>
<div class="col-sm-4 col-xs-12 policy">
<div class="ca-content">
<em class="fa fa-mail-reply">&nbsp;</em>
<h4 class="ca-main">30 дней гарантии</h4>
Вы можете вернуть товар в течении 30 дней после получения заказа.
</div>
</div>
<div class="col-sm-4 col-xs-12 policy">
<div class="ca-content">
<em class="fa fa-comments">&nbsp;</em>
<h4 class="ca-main">Прием заказов 24/7</h4>
Оформите заказ в интернет-магазине "{SETTINGS_STORE_NAME}" Прямо сейчас!
</div>
</div>
</div>
</div>
</div>
</div>
{% ENDIF %}


далее найдите и удалите:
<ul class="sns-social">
<li><a href="https://facebook.com/" title="FaceBook.com" class="fa fa-facebook" target="_self">&nbsp;</a></li>
<li><a href="https://vk.com/" title="VK.com" class="fa fa-vk" target="_self">&nbsp;</a></li>
<li><a href="https://youtube.com/" title="YouTube.com" class="fa fa-youtube" target="_self">&nbsp;</a></li>
<li><a href="https://twitter.com/" title="Twitter.com" class="fa fa-twitter" target="_self">&nbsp;</a></li>
</ul>

далее зайдите в шаблон Товары - найдите:
<!-- В категориях используем стандартный алгоритм отображения товаров -->
{% ELSE %}

<!-- Блок навигации по категориям, вложенным в текущую категорию -->
{% IF goods_empty=0 %}
<div class="categories">
{% FOR nested_categories_list %}
<div class="item col-sm-4 col-sms-6 col-smb-12">
<a href="{nested_categories_list.URL}" title="Перейти к категории &laquo;{nested_categories_list.NAME}&raquo;" class="image goods-cat-image-medium">
<i class="fa fa-eye"></i>
<img class="goods-cat-image-medium" src="{% IF nested_categories_list.IMAGE_EMPTY %}{ASSETS_IMAGES_PATH}no-photo-small.png?design=dark{% ELSE %}{nested_categories_list.IMAGE_MEDIUM}{% ENDIF %}">
</a>
<a href="{nested_categories_list.URL}" title="Перейти к категории &laquo;{nested_categories_list.NAME}&raquo;" class="title">{nested_categories_list.NAME}</a>
</div>
{% ENDFOR %}
</div>
{% ENDIF %}

<!-- Если нет товаров, выводим сообщение пользователю -->
{% IF goods_empty %}
{% IF goods_filters_empty %}
<p class="attention">Нет товаров в выбранной категории</p>
{% ELSE %}
<p class="attention">Нет товаров для выбранных условий</p>
{% ENDIF %}
{% ENDIF %}
<!-- /Если нет товаров, выводим сообщение пользователю -->


замените на:
<!-- В категориях используем стандартный алгоритм отображения товаров -->
{% ELSE %}

<!-- Если нет товаров, выводим сообщение пользователю -->
{% IF goods_empty %}
{% IF goods_filters_empty %}
<p class="attention">Нет товаров в выбранной категории</p>
{% ELSE %}
<p class="attention">Нет товаров для выбранных условий</p>
{% ENDIF %}
{% ENDIF %}
<!-- /Если нет товаров, выводим сообщение пользователю -->

далее зайдите в шаблон ЛК Настройки пользователя - найдите и удалите:
<div class="col-sm-6 col-xs-12">
<div class="col-account">
<h3>Юридическая информация</h3>
<div class="form-list">
<div class="fields">
<label for="sites_client_org_name">Наименование организации или ИП</label>
<input id="sites_client_org_name" type="text" name="form[sites_client_org_name]" value="{FORM_SITES_CLIENT_ORG_NAME}" minlength="5" class="required inputText">
</div>
<div class="fields">
<label for="sites_client_org_inn">ИНН</label>
<input id="sites_client_org_inn" type="text" name="form[sites_client_org_inn]" value="{FORM_SITES_CLIENT_ORG_INN}" minlength="9" maxlength="12" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_org_ogrn">ОГРН</label>
<input id="sites_client_org_ogrn" type="text" name="form[sites_client_org_ogrn]" value="{FORM_SITES_CLIENT_ORG_OGRN}" minlength="13" maxlength="15" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_org_kpp">КПП</label>
<input id="sites_client_org_kpp" type="text" name="form[sites_client_org_kpp]" value="{FORM_SITES_CLIENT_ORG_KPP}" minlength="9" maxlength="9" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_org_okpo">ОКПО</label>
<input id="sites_client_org_okpo" type="text" name="form[sites_client_org_okpo]" value="{FORM_SITES_CLIENT_ORG_OKPO}" minlength="8" maxlength="10" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_org_address">Юридический адрес</label>
<input id="sites_client_org_address" type="text" name="form[sites_client_org_address]" value="{FORM_SITES_CLIENT_ORG_ADDRESS}" minlength="5" class="inputText">
</div>
</div>
<div class="buttons">
<button type="submit" title="Сохранить персональные настройки" class="button">Сохранить</button>
</div>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<div class="col-account">
<h3>Банковские реквизиты</h3>
<div class="form-list">
<div class="fields">
<label for="sites_client_bank_account">Расчетный счет</label>
<input id="sites_client_bank_account" type="text" name="form[sites_client_bank_account]" value="{FORM_SITES_CLIENT_BANK_ACCOUNT}" minlength="13" maxlength="20" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_bank_bik">БИК</label>
<input id="sites_client_bank_bik" type="text" name="form[sites_client_bank_bik]" value="{FORM_SITES_CLIENT_BANK_BIK}" minlength="9" maxlength="9" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_bank_name">Название банка</label>
<input id="sites_client_bank_name" type="text" name="form[sites_client_bank_name]" value="{FORM_SITES_CLIENT_BANK_NAME}" minlength="5" class=" inputText">
</div>
<div class="fields">
<label for="sites_client_bank_corr_account">Корреспондентский счет</label>
<input id="sites_client_bank_corr_account" type="text" name="form[sites_client_bank_corr_account]" value="{FORM_SITES_CLIENT_BANK_CORR_ACCOUNT}" minlength="13" maxlength="20" class="digits inputText">
</div>
<div class="fields">
<label for="sites_client_bank_address">Адрес банка</label>
<input id="sites_client_bank_address" type="text" name="form[sites_client_bank_address]" value="{FORM_SITES_CLIENT_BANK_ADDRESS}" minlength="5" class=" inputText">
</div>
</div>
<div class="buttons">
<button type="submit" title="Сохранить персональные настройки" class="button">Сохранить</button>
</div>
</div>
</div>


далее зайдите в шаблон main.css - найдите и удалите:
#footer-middle ul.sns-social {color: #e1e1e1;font-size: 18px;}
#footer-middle ul.sns-social li {display: -moz-inline-stack;display: inline-block;vertical-align: middle;zoom: 1;padding: 3px;margin-right: 5px;overflow: hidden;}
#footer-middle ul.sns-social li .fa {width: 32px;height: 32px;border: 1px solid #9d9d9d;border-radius: 50%;line-height: 32px;text-align: center;display: block;position: relative;padding: 0px;}
#footer-middle ul.sns-social li .fa:before {display: block;}
#footer-middle ul.sns-social li .fa:hover {color: #fff;border: 1px solid #707070;background: #707070;padding: 0px;}
#footer-middle ul.sns-social li .fa:hover:before {-webkit-animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;-o-animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;animation: 0.3s ease 0s normal forwards 1 running toBottomFromTop;}

далее найдите и удалите:
/*** Баннеры ***/
#topsl {border-top: 1px solid #3f3f3f;border-bottom: 1px solid #3f3f3f;padding: 30px 0;}
#topsl .policy_shop .policy {overflow: hidden;position: relative;transition: all 300ms linear 0s;text-align: center;}
#topsl .policy_shop .policy .fa {border: 1px solid #5b5b5b;background: #2a2a2a;font-size: 30px;transition: all 400ms linear 0s;width: 75px;height: 75px;border-radius: 50%;margin-bottom: 20px;color: #e4e4e4;}
#topsl .policy_shop .policy .fa:before {height: 100%;left: 0;line-height: 75px;position: absolute;top: 0;width: 100%;color: #707070;}
#topsl .policy_shop .policy:hover .fa {background: #707070;border-color: #707070;}
#topsl .policy_shop .policy:hover .fa:before {color: #fff;-webkit-animation: moveFromBottom 300ms ease;-o-animation: moveFromBottom 300ms ease;animation: moveFromBottom 300ms ease;}
#topsl .policy_shop .policy .ca-content .ca-main {color: #535353;margin-bottom: 15px;-webkit-transition: all 200ms linear;-o-transition: all 200ms linear;transition: all 200ms linear;}
#topsl .policy_shop .policy:hover .ca-content .ca-main {color: #fff;-webkit-animation: smallToBig 300ms ease;-o-animation: smallToBig 300ms ease;animation: smallToBig 300ms ease;}
Огромное спасибо)





Темы с аналогичным тегами Дизайн

Количество пользователей, читающих эту тему: 0

0 пользователей, 0 гостей, 0 анонимных