Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Serg12rus

Newbie
  
  • Posts

    33
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Serg12rus's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. {{ header }} <div class="container"> <ul itemscope itemtype="http://schema.org/BreadcrumbList" class="breadcrumb"> {% set last_crumb = breadcrumbs|last %} {% set breadcrumbs = breadcrumbs|slice(0,-1) %} {% set i = 1 %} {% for breadcrumb in breadcrumbs %} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="{{ breadcrumb.href }}" itemprop="item"><span itemprop="name">{{ breadcrumb.text }}</span></a><meta itemprop="position" content="{{ i }}" /></li> {% set i = i + 1 %} {% endfor %} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><link href="{{ last_crumb.href }}" itemprop="item"/><span itemprop="name">{{ last_crumb.text|striptags }}</span><meta itemprop="position" content="{{ i }}" /></li> {% for breadcrumb in breadcrumbs123 %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> {{ content_top }} <div class="row"> {{ column_left }} {% if column_left and column_right %} {% set class = 'col-sm-6' %} {% elseif column_left or column_right %} {% set class = 'col-lg-12 col-md-8' %} {% else %} {% set class = 'col-sm-12' %} {% endif %} <div id="content" class="{{ class }}"> <div class="card card-category"> {% if description %} <div class="row"> {% if thumb %} <div class="col-lg-2 col-md-2 col-sm-3"><img src="{{ thumb }}" alt="{{ heading_title }}" title="{{ heading_title }}" class="img-thumbnail" /></div> {% endif %} {% if description %} {% if thumb %} {% set class_description = 'col-lg-10 col-md-10 col-sm-9' %} {% else %} {% set class_description = 'col-lg-12 col-md-12 col-sm-12' %} {% endif %} <div class="{{ class_description }}"> <h1>{{ heading_title }}</h1> <div id="category-description"> <div class="text-description"> {{ description }} </div> </div> </div> {% endif %} </div> {% else %} <h1 style="margin: 0">{{ heading_title }}</h1> {% endif %} </div> {% if categories %} <ul class="subcategory-list"> {% for category in categories %} <li> <a href="{{ category.href }}"> <img src="{{ category.thumb }}" alt=""> {{ category.name }} </a> </li> {% endfor %} </ul> {% endif %} {% if products %} <div class="filter-row"> <div class="row"> <div class="col-md-3 col-sm-3 hidden-xs"> <div class="btn-group btn-group-sm btn-view"> <button type="button" id="grid-view" class="btn" data-toggle="tooltip" title="{{ button_grid }}"><i class="fa fa-th"></i></button> <button type="button" id="list-view" class="btn" data-toggle="tooltip" title="{{ button_list }}"><i class="fa fa-th-list"></i></button> <button type="button" id="pricelist-view" class="btn" data-toggle="tooltip" title="{{ button_pricelist }}"><i class="fa fa-list"></i></button> </div> </div> <div class="col-md-2 col-sm-4 hide-tablet"> <div class="form-group"> <a href="{{ compare }}" id="compare-total-link" class="btn-link">{{ text_compare }}</a> </div> </div> <div class="col-md-4 col-sm-5"> <div class="form-group input-group"> <label class="input-group-addon" for="input-sort">{{ text_sort }}</label> <select id="input-sort" class="form-control" onchange="location = this.value;"> {% for sorts in sorts %} {% if sorts.value == '%s-%s'|format(sort, order) %} <option value="{{ sorts.href }}" selected="selected">{{ sorts.text }}</option> {% else %} <option value="{{ sorts.href }}">{{ sorts.text }}</option> {% endif %} {% endfor %} </select> </div> </div> <div class="col-md-3 col-sm-4"> <div class="form-group input-group"> <label class="input-group-addon" for="input-limit">{{ text_limit }}</label> <select id="input-limit" class="form-control" onchange="location = this.value;"> {% for limits in limits %} {% if limits.value == limit %} <option value="{{ limits.href }}" selected="selected">{{ limits.text }}</option> {% else %} <option value="{{ limits.href }}">{{ limits.text }}</option> {% endif %} {% endfor %} </select> </div> </div> </div> </div> <div class="row"> {% for product in products %} <div class="product-layout product-list col-xs-12"> <div class="product-thumb transition"> {% if product.sale %} <div class="sale">-{{ product.sale }}%</div> {% endif %} <div class="image"> <a href="{{ product.href }}"> <img src="{{ product.thumb }}" alt="{{ product.name }}" title="{{ product.name }}" class="img-responsive" /> </a> </div> <div class="caption"> <h3><a href="{{ product.href }}">{{ product.name }}</a></h3> <div class="rating"> {% for i in 1..5 %} {% if product.rating < i %} <span class="fa fa-stack"><i class="fa fa-star fa-stack-2x"></i></span> {% else %} <span class="fa fa-stack"><i class="fa fa-star stary fa-stack-2x"></i><i class="fa fa-star fa-stack-2x"></i></span> {% endif %} {% endfor %} </div> <div class="description">{{ product.description }}</div> {% if product.price %} <div class="price"> {% if not product.special %} {{ product.price }} {% else %} <span class="price-new">{{ product.special }}</span> <span class="price-old">{{ product.price }}</span> {% endif %} </div> {% endif %} <div class="button-group"> <button class="icon-btn" type="button" data-toggle="tooltip" title="{{ button_wishlist }}" onclick="wishlist.add('{{ product.product_id }}');"> <span class="pe-7s-like"></span> </button> {% if product.button_ask_price == false %} <button class="btn main-btn" type="button" onclick="cart.add('{{ product.product_id }}', '{{ product.minimum }}');"><i class="fa fa-shopping-basket" aria-hidden="true"></i>{{ button_cart}}</button> {% else %} <button type="button" class="ask_price" data-id="{{ product.product_id }}"><i class="fa fa-question"></i><span class="hidden-xs hidden-sm hidden-md">{{ button_price }}</span></button> {% endif %} <button class="icon-btn" type="button" data-toggle="tooltip" title="{{ button_compare }}" onclick="compare.add('{{ product.product_id }}');"> <span class="pe-7s-repeat"></span> </button> </div> </div> </div> </div> {% endfor %} </div> <div class="pagination-line"> <div class="row"> <div class="col-sm-6 text-left">{{ pagination }}</div> <div class="col-sm-6 text-right">{{ result }}</div> </div> </div> {% endif %} {% if not categories and not products %} <p>{{ text_empty }}</p> <div class="buttons"> <a href="{{ continue }}" class="btn main-btn">{{ button_continue }}</a><br><br> </div> {% endif %} </div> {{ column_right }} </div> {{ content_bottom }} </div> {{ footer }}
  2. Вам с то что нормальный или сьехавший
  3. unlink(/home/host1812544/masterboltikov.ru/htdocs/storage/cache/cache.catalog.language.1617046266): No such file or directory in /home/host1812544/masterboltikov.ru/htdocs/www/system/library/cache/file.php on line 68 и вот что появляется
  4. как возвращаюсь, сделал копию файла вставил кнопку и при каждом обновление модификатора вставляю ((((((((
  5. вот что накопал в нормальном он выглядит вот так (кнопку назад я добавил сам ) {{ header }} <div class="container"> <ul class="breadcrumb"> <span><input data-toggle="tooltip" data-original-title="{{ back_title }}" class="btn btn-primary button_back" style="float: right; margin-right: 10px; float: right; margin-right: 10px; margin-top: -0.6%;" onclick="window.history.back();" type="button" value="{{ button_back }}"/></span> {% for breadcrumb in breadcrumbs %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> {{ content_top }} <div class="row"> а вот так после обновления {{ header }} <div class="container"> <ul itemscope itemtype="http://schema.org/BreadcrumbList" class="breadcrumb"> {% set last_crumb = breadcrumbs|last %} {% set breadcrumbs = breadcrumbs|slice(0,-1) %} {% set i = 1 %} {% for breadcrumb in breadcrumbs %} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="{{ breadcrumb.href }}" itemprop="item"><span itemprop="name">{{ breadcrumb.text }}</span></a><meta itemprop="position" content="{{ i }}" /></li> {% set i = i + 1 %} {% endfor %} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><link href="{{ last_crumb.href }}" itemprop="item"/><span itemprop="name">{{ last_crumb.text|striptags }}</span><meta itemprop="position" content="{{ i }}" /></li> {% for breadcrumb in breadcrumbs123 %} <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> {% endfor %} </ul> {{ content_top }} <div class="row">
  6. Парни модификаторы все отключил не помогло
  7. При обновление модификатора сползают вниз категории
  8. После обновление у меня сползает вниз
  9. Как в опенкарт переименовать кнопку продолжить покупки $_['button_shopping'] = 'Продолжить покупки; здесь пробывал не получаеться htdocs/www/catalog/language/ru-ru
  10. категории сползли вниз как поднять обратно чтоб на одном уровне были Заранее всем Добра
  11. Кстати спасибо я методом отключения понял что это он
  12. не под скажешь как их поставить на одном уровне сползло вниз
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.