Refactor code structure for improved readability and maintainability
This commit is contained in:
10539
.vscode/ftp-kr.sync.cache.json
vendored
Normal file
10539
.vscode/ftp-kr.sync.cache.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,5 @@
|
||||
|
||||
#pdproductattributeslist {
|
||||
width:100%;
|
||||
width: 100%;
|
||||
margin-top: 15px;
|
||||
margin-right: 9px;
|
||||
margin-left: 9px;
|
||||
@@ -8,71 +7,94 @@
|
||||
|
||||
#pdproductattributeslist table {}
|
||||
|
||||
#pdproductattributeslist input.quantity {
|
||||
#pdproductattributeslist input.quantity {}
|
||||
|
||||
}
|
||||
#pdproductattributeslist .old_price {
|
||||
font-size: 12px;
|
||||
text-decoration: line-through;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
text-decoration: line-through;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .price {
|
||||
font-weight: bold;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .bootstrap-touchspin .input-group-btn-vertical i {
|
||||
left: 4px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist table td.option_infos .product-title {
|
||||
text-transform: capitalize;
|
||||
margin: .5rem 0;
|
||||
text-align: unset;
|
||||
text-transform: capitalize;
|
||||
margin: .5rem 0;
|
||||
text-align: unset;
|
||||
}
|
||||
|
||||
/** RESPOINSIVE TABLE **/
|
||||
|
||||
#pdproductattributeslist td, #pdproductattributeslist th {
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
padding-top: .75rem;
|
||||
padding-bottom: .75rem;
|
||||
#pdproductattributeslist td,
|
||||
#pdproductattributeslist th {
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
padding-top: .75rem;
|
||||
padding-bottom: .75rem;
|
||||
}
|
||||
|
||||
#pdproductattributeslist th {
|
||||
font-size: 13px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist td img {max-width: 100%;}
|
||||
|
||||
#pdproductattributeslist .option_image a.hidden {display:none;}
|
||||
#pdproductattributeslist .option_image a.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
#pdproductattributeslist th.product_image {width:10%;}
|
||||
#pdproductattributeslist th.product_image {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
#pdproductattributeslist th.product_infos {}
|
||||
#pdproductattributeslist th.product_price {width:12%;}
|
||||
#pdproductattributeslist th.product_variant {width:10%;}
|
||||
#pdproductattributeslist th.product_qty {width:10%;}
|
||||
#pdproductattributeslist th.product_btn {width:12%;}
|
||||
|
||||
#pdproductattributeslist th.product_price {
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
#pdproductattributeslist th.product_variant {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
#pdproductattributeslist th.product_qty {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
#pdproductattributeslist th.product_btn {
|
||||
width: 12%;
|
||||
}
|
||||
|
||||
|
||||
#pdproductattributeslist .footer_actions { background:#ddd; }
|
||||
#pdproductattributeslist .footer_actions {
|
||||
background: #ddd;
|
||||
}
|
||||
|
||||
#pdproductattributeslist b, #pdproductattributeslist strong {
|
||||
#pdproductattributeslist b,
|
||||
#pdproductattributeslist strong {
|
||||
margin-bottom: 0.3rem;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
|
||||
#category .product-quantity > .col {
|
||||
#category .product-quantity>.col {
|
||||
margin-bottom: .0rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#pdproductattributeslist .option_gty .product-quantity {max-width:200px; }
|
||||
#pdproductattributeslist .option_gty .product-quantity {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .product-quantity .qty {width:100%}
|
||||
#pdproductattributeslist .product-quantity .qty {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
#pdproductattributeslist .add-to-cart-pdproductattributeslist {
|
||||
width: 100%;
|
||||
@@ -97,57 +119,58 @@ Max width before this PARTICULAR table gets nasty
|
||||
This query will take effect for any screen smaller than 760px
|
||||
and also iPads specifically.
|
||||
*/
|
||||
@media
|
||||
only screen and (max-width: 760px),
|
||||
(min-device-width: 768px) and (max-device-width: 1024px) {
|
||||
@media only screen and (max-width: 760px),
|
||||
(min-device-width: 768px) and (max-device-width: 1024px) {
|
||||
|
||||
#pdproductattributeslist table {
|
||||
width: 100%;
|
||||
}
|
||||
#pdproductattributeslist table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Force table to not be like tables anymore */
|
||||
#pdproductattributeslist table,
|
||||
#pdproductattributeslist thead,
|
||||
#pdproductattributeslist tbody,
|
||||
#pdproductattributeslist th,
|
||||
#pdproductattributeslist td,
|
||||
#pdproductattributeslist tr {
|
||||
display: block;
|
||||
}
|
||||
/* Force table to not be like tables anymore */
|
||||
#pdproductattributeslist table,
|
||||
#pdproductattributeslist thead,
|
||||
#pdproductattributeslist tbody,
|
||||
#pdproductattributeslist th,
|
||||
#pdproductattributeslist td,
|
||||
#pdproductattributeslist tr {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Hide table headers (but not display: none;, for accessibility) */
|
||||
#pdproductattributeslist thead tr {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
/* Hide table headers (but not display: none;, for accessibility) */
|
||||
#pdproductattributeslist thead tr {
|
||||
position: absolute;
|
||||
top: -9999px;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist tr { border: 1px solid #ccc; }
|
||||
#pdproductattributeslist tr {
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
#pdproductattributeslist td {
|
||||
/* Behave like a "row" */
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50%;
|
||||
}
|
||||
#pdproductattributeslist td {
|
||||
/* Behave like a "row" */
|
||||
border: none;
|
||||
border-bottom: 1px solid #eee;
|
||||
position: relative;
|
||||
padding-left: 50%;
|
||||
}
|
||||
|
||||
#pdproductattributeslist td:before {
|
||||
/* Now like a table header */
|
||||
position: absolute;
|
||||
/* Top/left values mimic padding */
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
/* Label the data */
|
||||
content: attr(data-column);
|
||||
#pdproductattributeslist td:before {
|
||||
/* Now like a table header */
|
||||
position: absolute;
|
||||
/* Top/left values mimic padding */
|
||||
top: 6px;
|
||||
left: 6px;
|
||||
width: 45%;
|
||||
padding-right: 10px;
|
||||
white-space: nowrap;
|
||||
/* Label the data */
|
||||
content: attr(data-column);
|
||||
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
#pdproductattributeslist .grid .product-description {
|
||||
@@ -171,14 +194,16 @@ only screen and (max-width: 760px),
|
||||
bottom: 6.375rem;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .grid .add-to-cart-or-refresh {text-align: center;}
|
||||
#pdproductattributeslist .grid .add-to-cart-or-refresh {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .grid input.qtyfield {
|
||||
padding: 0 6px;
|
||||
margin: 0 5px 0 5px;
|
||||
vertical-align: bottom;
|
||||
display: inline;
|
||||
float: unset;
|
||||
padding: 0 6px;
|
||||
margin: 0 5px 0 5px;
|
||||
vertical-align: bottom;
|
||||
display: inline;
|
||||
float: unset;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .grid .product-quantity input.qtyfield {
|
||||
@@ -189,7 +214,7 @@ only screen and (max-width: 760px),
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .grid .product-quantity .qty {
|
||||
#pdproductattributeslist .grid .product-quantity .qty {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
@@ -200,48 +225,66 @@ only screen and (max-width: 760px),
|
||||
margin-bottom: 15px;
|
||||
overflow-y: hidden;
|
||||
overflow-x: scroll;
|
||||
border: 1px solid #d6d4d4; }
|
||||
#pdproductattributeslist .table-responsive > .table {
|
||||
margin-bottom: 0;
|
||||
background-color: #fff; }
|
||||
#pdproductattributeslist .table-responsive > .table > thead > tr > th,
|
||||
#pdproductattributeslist .table-responsive > .table > thead > tr > td,
|
||||
#pdproductattributeslist .table-responsive > .table > tbody > tr > th,
|
||||
#pdproductattributeslist .table-responsive > .table > tbody > tr > td,
|
||||
#pdproductattributeslist .table-responsive > .table > tfoot > tr > th,
|
||||
#pdproductattributeslist .table-responsive > .table > tfoot > tr > td {
|
||||
white-space: nowrap; }
|
||||
#pdproductattributeslist .table-responsive > .table-bordered {
|
||||
border: 0; }
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr > th:first-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr > td:first-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > th:first-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > td:first-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
||||
border-left: 0; }
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr > th:last-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr > td:last-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > th:last-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr > td:last-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
||||
border-right: 0; }
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr:last-child > th,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > thead > tr:last-child > td,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr:last-child > th,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tbody > tr:last-child > td,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
||||
#pdproductattributeslist .table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
||||
border-bottom: 0; }
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
|
||||
#pdproductattributeslist tr.footer_actions td {height:50px;}
|
||||
#pdproductattributeslist .table-responsive>.table {
|
||||
margin-bottom: 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .table-responsive>.table>thead>tr>th,
|
||||
#pdproductattributeslist .table-responsive>.table>thead>tr>td,
|
||||
#pdproductattributeslist .table-responsive>.table>tbody>tr>th,
|
||||
#pdproductattributeslist .table-responsive>.table>tbody>tr>td,
|
||||
#pdproductattributeslist .table-responsive>.table>tfoot>tr>th,
|
||||
#pdproductattributeslist .table-responsive>.table>tfoot>tr>td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .table-responsive>.table-bordered {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr>th:first-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr>td:first-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr>th:first-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr>td:first-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr>th:first-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr>td:first-child {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr>th:last-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr>td:last-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr>th:last-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr>td:last-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr>th:last-child,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr>td:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr:last-child>th,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>thead>tr:last-child>td,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr:last-child>th,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tbody>tr:last-child>td,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr:last-child>th,
|
||||
#pdproductattributeslist .table-responsive>.table-bordered>tfoot>tr:last-child>td {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
#pdproductattributeslist tr.footer_actions td {
|
||||
height: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#pdproductattributeslist_grid .product-quantity,
|
||||
#pdproductattributeslist_grid button.add-to-cart {width:100%;margin-top:10px;}
|
||||
#pdproductattributeslist_grid button.add-to-cart {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin input.form-control,
|
||||
#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin input.input-group {
|
||||
@@ -249,5 +292,6 @@ only screen and (max-width: 760px),
|
||||
height: 2.75rem;
|
||||
}
|
||||
|
||||
#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin {margin:0 auto;}
|
||||
|
||||
#pdproductattributeslist_grid .product-quantity .bootstrap-touchspin {
|
||||
margin: 0 auto;
|
||||
}
|
||||
@@ -1,107 +1,104 @@
|
||||
|
||||
{if $product_combinations}
|
||||
<div id="pdproductattributeslist" class="products">
|
||||
<div id="pdproductattributeslist" class="products">
|
||||
|
||||
{if $block_heading}
|
||||
<h3 class="idTabHrefShort page-product-heading">{l s='Select product combination' mod='pdproductattributeslist'}</h3>
|
||||
{/if}
|
||||
<table id="pdproductattributeslist_table" class="table table-striped table-bordered table-labeled tablesorter" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="product_image sorter-false filter-false">{l s='Image' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_variant">{l s='Variant' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_infos sorter-false filter-false">{l s='Product informations' mod='pdproductattributeslist'}</th>
|
||||
{if $show_prices}
|
||||
<th class="product_price">{l s='Price (tax incl.)' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_price">{l s='Price (tax excl.)' mod='pdproductattributeslist'}</th>
|
||||
{/if}
|
||||
<th class="product_qty">{l s='Quantity in stock' mod='pdproductattributeslist'}</th>
|
||||
{if !$is_catalog}
|
||||
<th class="product_btn sorter-false filter-false">{l s='Select quantity' mod='pdproductattributeslist'}</th>
|
||||
{/if}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$product_combinations item=$combination}
|
||||
<tr class="product_combination_{if ($combination@index % 2)}alternate_{/if}item">
|
||||
<td data-column="{l s='Image' mod='pdproductattributeslist'}" class="option_image">
|
||||
{if $block_heading}
|
||||
<h3 class="idTabHrefShort page-product-heading">{l s='Select product combination' mod='pdproductattributeslist'}</h3>
|
||||
{/if}
|
||||
<table id="pdproductattributeslist_table" class="table table-striped table-bordered table-labeled tablesorter" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="product_image sorter-false filter-false">{l s='Image' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_variant">{l s='Variant' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_infos sorter-false filter-false">{l s='Product informations' mod='pdproductattributeslist'}</th>
|
||||
{if $show_prices}
|
||||
<th class="product_price">{l s='Price (tax incl.)' mod='pdproductattributeslist'}</th>
|
||||
<th class="product_price">{l s='Price (tax excl.)' mod='pdproductattributeslist'}</th>
|
||||
{/if}
|
||||
<th class="product_qty">{l s='Quantity in stock' mod='pdproductattributeslist'}</th>
|
||||
{if !$is_catalog}
|
||||
<th class="product_btn sorter-false filter-false">{l s='Select quantity' mod='pdproductattributeslist'}</th>
|
||||
{/if}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$product_combinations item=$combination}
|
||||
<tr class="product_combination_{if ($combination@index % 2)}alternate_{/if}item">
|
||||
<td data-column="{l s='Image' mod='pdproductattributeslist'}" class="option_image">
|
||||
|
||||
|
||||
{foreach from=$combination.images item=$img}
|
||||
<a href="{$img.large_default}" rel="group_{$combination.id_product_attribute}" class="{if ($img@index > 0)}hidden {/if}fancybox">
|
||||
<img width="{$cartSize.width}" height="{$cartSize.height}" class="img img-fluid img-responsive" src="{$img.home_default}" alt="{$combination.attribute_name}" title="{$combination.attribute_name}" />
|
||||
</a>
|
||||
{/foreach}
|
||||
{foreach from=$combination.images item=$img}
|
||||
<a href="{$img.large_default}" rel="group_{$combination.id_product_attribute}" class="{if ($img@index > 0)}hidden {/if}fancybox">
|
||||
<img class="img img-fluid img-responsive" src="{$img.home_default}" alt="{$combination.attribute_name}" title="{$combination.attribute_name}" />
|
||||
</a>
|
||||
{/foreach}
|
||||
|
||||
</td>
|
||||
</td>
|
||||
|
||||
|
||||
<td data-column="{l s='Product variant' mod='pdproductattributeslist'}" class="option_variant">
|
||||
{$combination.attribute_name_html nofilter}
|
||||
</td>
|
||||
<td data-column="{l s='Product variant' mod='pdproductattributeslist'}" class="option_variant">
|
||||
{$combination.attribute_name_html nofilter}
|
||||
</td>
|
||||
|
||||
<td data-column="{l s='Informations' mod='pdproductattributeslist'}" class="option_infos text-xs-left">
|
||||
<td data-column="{l s='Informations' mod='pdproductattributeslist'}" class="option_infos text-xs-left">
|
||||
|
||||
{if isset($combination.reference) AND $combination.reference}
|
||||
{l s='Reference' mod='pdproductattributeslist'}: <b>{$combination.reference}</b>
|
||||
{/if}
|
||||
{if !empty($combination.ean13)}
|
||||
<br />{l s='Ean' mod='pdproductattributeslist'}: <b>{$combination.ean13}</b>
|
||||
{/if}
|
||||
{if isset($combination.reference) AND $combination.reference}
|
||||
{l s='Reference' mod='pdproductattributeslist'}: <b>{$combination.reference}</b>
|
||||
{/if}
|
||||
{if !empty($combination.ean13)}
|
||||
<br />{l s='Ean' mod='pdproductattributeslist'}: <b>{$combination.ean13}</b>
|
||||
{/if}
|
||||
|
||||
</td>
|
||||
</td>
|
||||
|
||||
{if $show_prices}
|
||||
<td data-column="{l s='Price tax incl.' mod='pdproductattributeslist'}" class="option_price">
|
||||
<span class="price product-price">
|
||||
{Tools::displayPrice($combination.price)}
|
||||
</span>
|
||||
{if $combination.price != $combination.price_old}
|
||||
<br />
|
||||
<span class="old_price">
|
||||
{Tools::displayPrice($combination.price_old)}
|
||||
</span>
|
||||
{/if}
|
||||
</td>
|
||||
{if $show_prices}
|
||||
<td data-column="{l s='Price tax incl.' mod='pdproductattributeslist'}" class="option_price">
|
||||
<span class="price product-price">
|
||||
{Tools::displayPrice($combination.price)}
|
||||
</span>
|
||||
{if $combination.price != $combination.price_old}
|
||||
<br />
|
||||
<span class="old_price">
|
||||
{Tools::displayPrice($combination.price_old)}
|
||||
</span>
|
||||
{/if}
|
||||
</td>
|
||||
|
||||
<td data-column="{l s='Price tax excl.' mod='pdproductattributeslist'}" class="option_price">
|
||||
<span class="price product-price">
|
||||
{Tools::displayPrice($combination.price_tax_excl)}
|
||||
</span>
|
||||
<br />
|
||||
{if $combination.price_tax_excl != $combination.price_old_tax_excl}
|
||||
<span class="old_price">
|
||||
{Tools::displayPrice($combination.price_old_tax_excl)}
|
||||
</span>
|
||||
{/if}
|
||||
</td>
|
||||
{/if}
|
||||
<td data-column="{l s='Price tax excl.' mod='pdproductattributeslist'}" class="option_price">
|
||||
<span class="price product-price">
|
||||
{Tools::displayPrice($combination.price_tax_excl)}
|
||||
</span>
|
||||
<br />
|
||||
{if $combination.price_tax_excl != $combination.price_old_tax_excl}
|
||||
<span class="old_price">
|
||||
{Tools::displayPrice($combination.price_old_tax_excl)}
|
||||
</span>
|
||||
{/if}
|
||||
</td>
|
||||
{/if}
|
||||
|
||||
<td data-column="{l s='Quantity on stock' mod='pdproductattributeslist'}" class="option_price">
|
||||
<b>{$combination.quantity}</b> {l s='pcs' mod='pdproductattributeslist'}
|
||||
</td>
|
||||
<td data-column="{l s='Quantity on stock' mod='pdproductattributeslist'}" class="option_price">
|
||||
<b>{if $combination.quantity <= 10 }{$combination.quantity}{else}>10{/if}</b> {l s='pcs' mod='pdproductattributeslist'}
|
||||
</td>
|
||||
|
||||
{if !$is_catalog}
|
||||
<td data-id-product="{$combination.id_product|intval}" data-id-product-attribute="{$combination.id_product_attribute|intval}" data-column="{l s='Select quantity' mod='pdproductattributeslist'}" class="option_gty">
|
||||
<div class="row extra-small-gutters product-quantity">
|
||||
<input type="number" name="qty" inputmode="numeric" pattern="[0-9]*" class="quantity input-group form-control" min="0" value="0"/>
|
||||
</div>
|
||||
</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if !$is_catalog}
|
||||
<td data-id-product="{$combination.id_product|intval}" data-id-product-attribute="{$combination.id_product_attribute|intval}" data-column="{l s='Select quantity' mod='pdproductattributeslist'}" class="option_gty">
|
||||
<div class="row extra-small-gutters product-quantity">
|
||||
<input type="number" name="qty" inputmode="numeric" pattern="[0-9]*" class="quantity input-group form-control" min="0" value="0" />
|
||||
</div>
|
||||
</td>
|
||||
{/if}
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="footer_actions">
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="footer_actions">
|
||||
|
||||
<button
|
||||
class="btn btn-lg btn-primary add-to-cart-pdproductattributeslist pull-right"
|
||||
type="button">
|
||||
{l s='Add selected to cart' mod='pdproductattributeslist'}
|
||||
</button>
|
||||
<button class="btn btn-lg btn-primary add-to-cart-pdproductattributeslist pull-right" type="button">
|
||||
{l s='Add selected to cart' mod='pdproductattributeslist'}
|
||||
</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
@@ -26,11 +26,9 @@
|
||||
{foreach from=$product_combinations item=$combination}
|
||||
<tr class="product_combination_{if ($combination@index % 2)}alternate_{/if}item">
|
||||
<td data-column="{l s='Image' mod='pdproductattributeslist'}" class="option_image">
|
||||
|
||||
|
||||
{foreach from=$combination.images item=$img}
|
||||
<a href="{$img.large_default}" rel="group_{$combination.id_product_attribute}" class="{if ($img@index > 0)}hidden {/if}fancybox">
|
||||
<img width="{$cartSize.width}" height="{$cartSize.height}" class="img img-fluid img-responsive" src="{$img.home_default}" alt="{$combination.attribute_name}" title="{$combination.attribute_name}" />
|
||||
<img class="img img-fluid img-responsive" src="{$img.home_default}" alt="{$combination.attribute_name}" title="{$combination.attribute_name}" />
|
||||
</a>
|
||||
{/foreach}
|
||||
|
||||
@@ -79,7 +77,7 @@
|
||||
{/if}
|
||||
|
||||
<td data-column="{l s='Quantity on stock' mod='pdproductattributeslist'}" class="option_price">
|
||||
<b>{$combination.quantity}</b> {l s='pcs' mod='pdproductattributeslist'}
|
||||
<b>{if $combination.quantity <= 10 }{$combination.quantity}{else}>10{/if}</b> {l s='pcs' mod='pdproductattributeslist'}
|
||||
</td>
|
||||
|
||||
{if !$is_catalog}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -553,12 +553,29 @@ a[href="https://redline.com.pl/pl/zamówienie?newAddress=invoice"] {
|
||||
}
|
||||
}
|
||||
|
||||
#pdproductattributeslist {
|
||||
th {
|
||||
white-space: nowrap;
|
||||
|
||||
&:last-child {
|
||||
width: 130px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.product_combination_item,
|
||||
.product_combination_alternate_item {
|
||||
.option_image {
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 75px;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group {
|
||||
border: 0 !important;
|
||||
display: flex !important;
|
||||
width: 140px;
|
||||
width: 110px;
|
||||
gap: 5px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
@@ -566,7 +583,7 @@ a[href="https://redline.com.pl/pl/zamówienie?newAddress=invoice"] {
|
||||
button.bootstrap-touchspin-down,
|
||||
button.bootstrap-touchspin-up {
|
||||
border: 1px solid #eee;
|
||||
width: 40px;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 243 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 75 KiB |
@@ -7,250 +7,229 @@
|
||||
*}
|
||||
|
||||
<section id="main" class="product-detail detail-3382420090 product-image-thumbs product-thumbs-bottom" itemscope itemtype="https://schema.org/Product">
|
||||
<meta itemprop="url" content="{$product.url}"><div class="row"><div class="col-md-6 col-lg-6 col-xl-6 col-sm-12 col-xs-12 col-sp-12">
|
||||
<meta itemprop="url" content="{$product.url}">
|
||||
<div class="row">
|
||||
<div class="col-md-5 col-lg-5 col-xl-5 col-sm-12 col-xs-12 col-sp-12">
|
||||
|
||||
{block name='page_content_container'}
|
||||
<section class="page-content" id="content" data-templateview="bottom" data-numberimage="5" data-numberimage1200="4" data-numberimage992="4" data-numberimage768="3" data-numberimage576="3" data-numberimage480="2" data-numberimage360="2" data-templatemodal="1" data-templatezoomtype="in" data-zoomposition="right" data-zoomwindowwidth="400" data-zoomwindowheight="400">
|
||||
{block name='page_content'}
|
||||
<div class="images-container">
|
||||
{block name='product_cover_thumbnails'}
|
||||
{if $isMobile && $dmobile_swipe}
|
||||
<div class="list-images-mobile">
|
||||
{foreach from=$product.images item=image}
|
||||
<div>
|
||||
<img
|
||||
class="thumb js-thumb {if $image.id_image == $product.cover.id_image} selected {/if}"
|
||||
data-image-medium-src="{$image.bySize.medium_default.url}"
|
||||
data-image-large-src="{$image.bySize.large_default.url}"
|
||||
src="{$image.bySize.large_default.url}"
|
||||
alt="{$image.legend}"
|
||||
title="{$image.legend}"
|
||||
itemprop="image"
|
||||
>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
{else}
|
||||
{block name='product_cover'}
|
||||
<div class="product-cover">
|
||||
{block name='product_flags'}
|
||||
<ul class="product-flags">
|
||||
{foreach from=$product.flags item=flag}
|
||||
<li class="product-flag {$flag.type}">{$flag.label}</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/block}
|
||||
{if $product.cover}
|
||||
<img id="zoom_product" data-type-zoom="" class="js-qv-product-cover img-fluid" src="{$product.cover.bySize.large_default.url}" alt="{$product.cover.legend}" title="{$product.cover.legend}" itemprop="image">
|
||||
<div class="layer hidden-sm-down" data-toggle="modal" data-target="#product-modal">
|
||||
<i class="material-icons zoom-in"></i>
|
||||
</div>
|
||||
{else}
|
||||
<img id="zoom_product" data-type-zoom="" class="js-qv-product-cover img-fluid" src="{$urls.no_picture_image.bySize.large_default.url}" alt="{$product.name}" title="{$product.name}" itemprop="image">
|
||||
{/if}
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name='product_images'}
|
||||
<div id="thumb-gallery" class="product-thumb-images">
|
||||
{if $product.cover}
|
||||
{foreach from=$product.images item=image}
|
||||
<div class="thumb-container {if $image.id_image == $product.cover.id_image} active {/if}">
|
||||
<a href="javascript:void(0)" data-image="{$image.bySize.large_default.url}" data-zoom-image="{$image.bySize.large_default.url}">
|
||||
<img
|
||||
class="thumb js-thumb {if $image.id_image == $product.cover.id_image} selected {/if}"
|
||||
data-image-medium-src="{$image.bySize.medium_default.url}"
|
||||
data-image-large-src="{$image.bySize.large_default.url}"
|
||||
src="{$image.bySize.home_default.url}"
|
||||
alt="{$image.legend}"
|
||||
title="{$image.legend}"
|
||||
itemprop="image"
|
||||
>
|
||||
</a>
|
||||
{block name='page_content_container'}
|
||||
<section class="page-content" id="content" data-templateview="bottom" data-numberimage="5" data-numberimage1200="4" data-numberimage992="4" data-numberimage768="3" data-numberimage576="3" data-numberimage480="2" data-numberimage360="2" data-templatemodal="1" data-templatezoomtype="in" data-zoomposition="right" data-zoomwindowwidth="400" data-zoomwindowheight="400">
|
||||
{block name='page_content'}
|
||||
<div class="images-container">
|
||||
{block name='product_cover_thumbnails'}
|
||||
{if $isMobile && $dmobile_swipe}
|
||||
<div class="list-images-mobile">
|
||||
{foreach from=$product.images item=image}
|
||||
<div>
|
||||
<img class="thumb js-thumb {if $image.id_image == $product.cover.id_image} selected {/if}" data-image-medium-src="{$image.bySize.medium_default.url}" data-image-large-src="{$image.bySize.large_default.url}" src="{$image.bySize.large_default.url}" alt="{$image.legend}" title="{$image.legend}" itemprop="image">
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
{/foreach}
|
||||
{else}
|
||||
<div class="thumb-container">
|
||||
<a href="javascript:void(0)" data-image="{$urls.no_picture_image.bySize.large_default.url}" data-zoom-image="{$urls.no_picture_image.bySize.large_default.url}">
|
||||
<img
|
||||
class="thumb js-thumb img-fluid"
|
||||
data-image-medium-src="{$urls.no_picture_image.bySize.medium_default.url}"
|
||||
data-image-large-src="{$urls.no_picture_image.bySize.large_default.url}"
|
||||
src="{$urls.no_picture_image.bySize.home_default.url}"
|
||||
alt="{$product.name}"
|
||||
title="{$product.name}"
|
||||
itemprop="image"
|
||||
>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{else}
|
||||
{block name='product_cover'}
|
||||
<div class="product-cover">
|
||||
{block name='product_flags'}
|
||||
<ul class="product-flags">
|
||||
{foreach from=$product.flags item=flag}
|
||||
<li class="product-flag {$flag.type}">{$flag.label}</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/block}
|
||||
{if $product.cover}
|
||||
<img id="zoom_product" data-type-zoom="" class="js-qv-product-cover img-fluid" src="{$product.cover.bySize.large_default.url}" alt="{$product.cover.legend}" title="{$product.cover.legend}" itemprop="image">
|
||||
<div class="layer hidden-sm-down" data-toggle="modal" data-target="#product-modal">
|
||||
<i class="material-icons zoom-in"></i>
|
||||
</div>
|
||||
{else}
|
||||
<img id="zoom_product" data-type-zoom="" class="js-qv-product-cover img-fluid" src="{$urls.no_picture_image.bySize.large_default.url}" alt="{$product.name}" title="{$product.name}" itemprop="image">
|
||||
{/if}
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{if $product.images|@count > 1}
|
||||
<div class="arrows-product-fake slick-arrows">
|
||||
<button class="slick-prev slick-arrow" aria-label="Previous" type="button" >{l s='Previous' d='Shop.Theme.Catalog'}</button>
|
||||
<button class="slick-next slick-arrow" aria-label="Next" type="button">{l s='Next' d='Shop.Theme.Catalog'}</button>
|
||||
</div>
|
||||
{/if}
|
||||
{/block}
|
||||
{/if}
|
||||
{/block}
|
||||
{hook h='displayAfterProductThumbs'}
|
||||
</div>
|
||||
{/block}
|
||||
</section>
|
||||
{/block}
|
||||
{block name='product_images'}
|
||||
<div id="thumb-gallery" class="product-thumb-images">
|
||||
{if $product.cover}
|
||||
{foreach from=$product.images item=image}
|
||||
<div class="thumb-container {if $image.id_image == $product.cover.id_image} active {/if}">
|
||||
<a href="javascript:void(0)" data-image="{$image.bySize.large_default.url}" data-zoom-image="{$image.bySize.large_default.url}">
|
||||
<img class="thumb js-thumb {if $image.id_image == $product.cover.id_image} selected {/if}" data-image-medium-src="{$image.bySize.medium_default.url}" data-image-large-src="{$image.bySize.large_default.url}" src="{$image.bySize.home_default.url}" alt="{$image.legend}" title="{$image.legend}" itemprop="image">
|
||||
</a>
|
||||
</div>
|
||||
{/foreach}
|
||||
{else}
|
||||
<div class="thumb-container">
|
||||
<a href="javascript:void(0)" data-image="{$urls.no_picture_image.bySize.large_default.url}" data-zoom-image="{$urls.no_picture_image.bySize.large_default.url}">
|
||||
<img class="thumb js-thumb img-fluid" data-image-medium-src="{$urls.no_picture_image.bySize.medium_default.url}" data-image-large-src="{$urls.no_picture_image.bySize.large_default.url}" src="{$urls.no_picture_image.bySize.home_default.url}" alt="{$product.name}" title="{$product.name}" itemprop="image">
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{block name='product_images_modal'}
|
||||
{include file='catalog/_partials/product-images-modal.tpl'}
|
||||
{/block}
|
||||
</div><div class="col-md-6 col-lg-6 col-xl-6 col-sm-12 col-xs-12 col-sp-12">
|
||||
{block name='page_header_container'}
|
||||
{block name='page_header'}
|
||||
<h1 class="h1 product-detail-name" itemprop="name">{block name='page_title'}{$product.name}{/block}</h1>
|
||||
{/block}
|
||||
{/block}
|
||||
{block name='product_prices'}
|
||||
{include file='catalog/_partials/product-prices.tpl'}
|
||||
{/block}
|
||||
|
||||
{if $product.is_customizable && count($product.customizations.fields)}
|
||||
{block name='product_customization'}
|
||||
{include file="catalog/_partials/product-customization.tpl" customizations=$product.customizations}
|
||||
{/block}
|
||||
{/if}
|
||||
<div class="product-actions">
|
||||
{block name='product_buy'}
|
||||
<form action="{$urls.pages.cart}" method="post" id="add-to-cart-or-refresh">
|
||||
<input type="hidden" name="token" value="{$static_token}">
|
||||
<input type="hidden" name="id_product" value="{$product.id}" id="product_page_product_id">
|
||||
<input type="hidden" name="id_customization" value="{$product.id_customization}" id="product_customization_id">
|
||||
|
||||
{block name='product_variants'}
|
||||
{include file='catalog/_partials/product-variants.tpl'}
|
||||
{/block}
|
||||
|
||||
{block name='product_pack'}
|
||||
{if $packItems}
|
||||
<section class="product-pack">
|
||||
<h3 class="h4">{l s='This pack contains' d='Shop.Theme.Catalog'}</h3>
|
||||
{foreach from=$packItems item="product_pack"}
|
||||
{block name='product_miniature'}
|
||||
{include file='catalog/_partials/miniatures/pack-product.tpl' product=$product_pack}
|
||||
{if $product.images|@count > 1}
|
||||
<div class="arrows-product-fake slick-arrows">
|
||||
<button class="slick-prev slick-arrow" aria-label="Previous" type="button">{l s='Previous' d='Shop.Theme.Catalog'}</button>
|
||||
<button class="slick-next slick-arrow" aria-label="Next" type="button">{l s='Next' d='Shop.Theme.Catalog'}</button>
|
||||
</div>
|
||||
{/if}
|
||||
{/block}
|
||||
{/if}
|
||||
{/block}
|
||||
{/foreach}
|
||||
{hook h='displayAfterProductThumbs'}
|
||||
</div>
|
||||
{/block}
|
||||
</section>
|
||||
{/if}
|
||||
{/block}
|
||||
|
||||
{block name='product_discounts'}
|
||||
{include file='catalog/_partials/product-discounts.tpl'}
|
||||
{block name='product_images_modal'}
|
||||
{include file='catalog/_partials/product-images-modal.tpl'}
|
||||
{/block}
|
||||
</div>
|
||||
<div class="col-md-7 col-lg-7 col-xl-7 col-sm-12 col-xs-12 col-sp-12">
|
||||
{block name='page_header_container'}
|
||||
{block name='page_header'}
|
||||
<h1 class="h1 product-detail-name" itemprop="name">{block name='page_title'}{$product.name}{/block}</h1>
|
||||
{/block}
|
||||
{/block}
|
||||
{block name='product_prices'}
|
||||
{include file='catalog/_partials/product-prices.tpl'}
|
||||
{/block}
|
||||
|
||||
{block name='product_add_to_cart'}
|
||||
{include file='catalog/_partials/product-add-to-cart.tpl'}
|
||||
{/block}
|
||||
{if $product.is_customizable && count($product.customizations.fields)}
|
||||
{block name='product_customization'}
|
||||
{include file="catalog/_partials/product-customization.tpl" customizations=$product.customizations}
|
||||
{/block}
|
||||
{/if}
|
||||
<div class="product-actions">
|
||||
{block name='product_buy'}
|
||||
<form action="{$urls.pages.cart}" method="post" id="add-to-cart-or-refresh">
|
||||
<input type="hidden" name="token" value="{$static_token}">
|
||||
<input type="hidden" name="id_product" value="{$product.id}" id="product_page_product_id">
|
||||
<input type="hidden" name="id_customization" value="{$product.id_customization}" id="product_customization_id">
|
||||
|
||||
{block name='product_refresh'}
|
||||
<input class="product-refresh ps-hidden-by-js" name="refresh" type="submit" value="{l s='Refresh' d='Shop.Theme.Actions'}">
|
||||
{/block}
|
||||
</form>
|
||||
{/block}
|
||||
</div>
|
||||
{block name='product_description_short'}
|
||||
<div id="product-description-short-{$product.id}" class="description-short" itemprop="description">{$product.description_short nofilter}</div>
|
||||
{/block}
|
||||
{block name='product_after_cart_button'}
|
||||
{include file='catalog/_partials/product-after-cart-button.tpl'}
|
||||
{/block}
|
||||
{block name='product_additional_info'}
|
||||
{include file='catalog/_partials/product-additional-info.tpl'}
|
||||
{/block}
|
||||
{hook h='displayLeoProductReviewExtra' product=$product}
|
||||
{block name='hook_display_reassurance'}
|
||||
{hook h='displayReassurance'}
|
||||
{/block}
|
||||
</div><div class="col-md-12 col-lg-12 col-xl-12 col-sm-12 col-xs-12 col-sp-12">
|
||||
{include file="sub/product_info/tab.tpl"}
|
||||
{block name='product_accessories'}
|
||||
{if $accessories}
|
||||
<section class="product-accessories clearfix">
|
||||
<h3 class="h5 products-section-title">{l s='You might also like' d='Shop.Theme.Catalog'}</h3>
|
||||
<div class="products">
|
||||
<div class="owl-row {if isset($productClassWidget)} {$productClassWidget}{/if}">
|
||||
<div id="category-products2">
|
||||
{foreach from=$accessories item="product_accessory"}
|
||||
<div class="item{if $smarty.foreach.mypLoop.index == 0} first{/if}">
|
||||
{block name='product_miniature'}
|
||||
{if isset($productProfileDefault) && $productProfileDefault}
|
||||
{block name='product_variants'}
|
||||
{include file='catalog/_partials/product-variants.tpl'}
|
||||
{/block}
|
||||
|
||||
{hook h='displayLeoProfileProduct' product=$product_accessory profile=$productProfileDefault}
|
||||
{else}
|
||||
{include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory}
|
||||
{/if}
|
||||
{/block}
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
{block name='product_pack'}
|
||||
{if $packItems}
|
||||
<section class="product-pack">
|
||||
<h3 class="h4">{l s='This pack contains' d='Shop.Theme.Catalog'}</h3>
|
||||
{foreach from=$packItems item="product_pack"}
|
||||
{block name='product_miniature'}
|
||||
{include file='catalog/_partials/miniatures/pack-product.tpl' product=$product_pack}
|
||||
{/block}
|
||||
{/foreach}
|
||||
</section>
|
||||
{/if}
|
||||
{/block}
|
||||
|
||||
{block name='product_discounts'}
|
||||
{include file='catalog/_partials/product-discounts.tpl'}
|
||||
{/block}
|
||||
|
||||
{block name='product_add_to_cart'}
|
||||
{include file='catalog/_partials/product-add-to-cart.tpl'}
|
||||
{/block}
|
||||
|
||||
{block name='product_refresh'}
|
||||
<input class="product-refresh ps-hidden-by-js" name="refresh" type="submit" value="{l s='Refresh' d='Shop.Theme.Actions'}">
|
||||
{/block}
|
||||
</form>
|
||||
{/block}
|
||||
</div>
|
||||
</section>
|
||||
{/if}
|
||||
{/block}
|
||||
{block name='product_description_short'}
|
||||
<div id="product-description-short-{$product.id}" class="description-short" itemprop="description">{$product.description_short nofilter}</div>
|
||||
{/block}
|
||||
{block name='product_after_cart_button'}
|
||||
{include file='catalog/_partials/product-after-cart-button.tpl'}
|
||||
{/block}
|
||||
{block name='product_additional_info'}
|
||||
{include file='catalog/_partials/product-additional-info.tpl'}
|
||||
{/block}
|
||||
{hook h='displayLeoProductReviewExtra' product=$product}
|
||||
{block name='hook_display_reassurance'}
|
||||
{hook h='displayReassurance'}
|
||||
{/block}
|
||||
{hook h='displayCustomAttributesListTable' product=$product}
|
||||
</div>
|
||||
<div class="col-md-12 col-lg-12 col-xl-12 col-sm-12 col-xs-12 col-sp-12">
|
||||
{include file="sub/product_info/tab.tpl"}
|
||||
{block name='product_accessories'}
|
||||
{if $accessories}
|
||||
<section class="product-accessories clearfix">
|
||||
<h3 class="h5 products-section-title">{l s='You might also like' d='Shop.Theme.Catalog'}</h3>
|
||||
<div class="products">
|
||||
<div class="owl-row {if isset($productClassWidget)} {$productClassWidget}{/if}">
|
||||
<div id="category-products2">
|
||||
{foreach from=$accessories item="product_accessory"}
|
||||
<div class="item{if $smarty.foreach.mypLoop.index == 0} first{/if}">
|
||||
{block name='product_miniature'}
|
||||
{if isset($productProfileDefault) && $productProfileDefault}
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
products_list_functions.push(
|
||||
function(){
|
||||
$('#category-products2').owlCarousel({
|
||||
{if isset($IS_RTL) && $IS_RTL}
|
||||
direction:'rtl',
|
||||
{else}
|
||||
direction:'ltr',
|
||||
{hook h='displayLeoProfileProduct' product=$product_accessory profile=$productProfileDefault}
|
||||
{else}
|
||||
{include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory}
|
||||
{/if}
|
||||
{/block}
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{/if}
|
||||
items : 4,
|
||||
itemsCustom : false,
|
||||
itemsDesktop : [1200, 4],
|
||||
itemsDesktopSmall : [992, 3],
|
||||
itemsTablet : [768, 2],
|
||||
itemsTabletSmall : false,
|
||||
itemsMobile : [480, 1],
|
||||
singleItem : false, // true : show only 1 item
|
||||
itemsScaleUp : false,
|
||||
slideSpeed : 200, // change speed when drag and drop a item
|
||||
paginationSpeed :800, // change speed when go next page
|
||||
{/block}
|
||||
|
||||
autoPlay : false, // time to show each item
|
||||
stopOnHover : false,
|
||||
navigation : true,
|
||||
navigationText : ["‹", "›"],
|
||||
<script type="text/javascript">
|
||||
products_list_functions.push(
|
||||
function() {
|
||||
$('#category-products2').owlCarousel({
|
||||
{if isset($IS_RTL) && $IS_RTL}
|
||||
direction: 'rtl',
|
||||
{else}
|
||||
direction: 'ltr',
|
||||
{/if}
|
||||
items: 4,
|
||||
itemsCustom: false,
|
||||
itemsDesktop: [1200, 4],
|
||||
itemsDesktopSmall: [992, 3],
|
||||
itemsTablet: [768, 2],
|
||||
itemsTabletSmall: false,
|
||||
itemsMobile: [480, 1],
|
||||
singleItem: false, // true : show only 1 item
|
||||
itemsScaleUp: false,
|
||||
slideSpeed: 200, // change speed when drag and drop a item
|
||||
paginationSpeed: 800, // change speed when go next page
|
||||
|
||||
scrollPerPage :true,
|
||||
responsive :true,
|
||||
autoPlay: false, // time to show each item
|
||||
stopOnHover: false,
|
||||
navigation: true,
|
||||
navigationText: ["‹", "›"],
|
||||
|
||||
pagination : false,
|
||||
paginationNumbers : false,
|
||||
scrollPerPage: true,
|
||||
responsive: true,
|
||||
|
||||
addClassActive : true,
|
||||
pagination: false,
|
||||
paginationNumbers: false,
|
||||
|
||||
mouseDrag : true,
|
||||
touchDrag : true,
|
||||
addClassActive: true,
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
</script>
|
||||
{block name='product_footer'}
|
||||
{hook h='displayFooterProduct' product=$product category=$category}
|
||||
{/block}
|
||||
</div></div>
|
||||
{block name='page_footer_container'}
|
||||
<footer class="page-footer">
|
||||
{block name='page_footer'}
|
||||
<!-- Footer content -->
|
||||
{/block}
|
||||
</footer>
|
||||
{/block}
|
||||
</section>
|
||||
mouseDrag: true,
|
||||
touchDrag: true,
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
</script>
|
||||
{block name='product_footer'}
|
||||
{hook h='displayFooterProduct' product=$product category=$category}
|
||||
{/block}
|
||||
</div>
|
||||
</div>
|
||||
{block name='page_footer_container'}
|
||||
<footer class="page-footer">
|
||||
{block name='page_footer'}
|
||||
<!-- Footer content -->
|
||||
{/block}
|
||||
</footer>
|
||||
{/block}
|
||||
</section>
|
||||
Reference in New Issue
Block a user