56. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2022-11-18 03:12:07 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

56.1 Files compared

#LocationFileLast Modified
1Porto Theme/app/design/frontend/Smartwave/porto/Magento_Catalog/templates/product/listitems.phtml2021-02-01 05:04:06 +0000
2Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/Magento_Catalog/templates/product/listitems.phtml2022-11-03 08:27:30 +0000

56.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged8752
Changed520
Inserted17
Removed11

56.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

56.4 Active regular expressions

No regular expressions were active.

56.5 Comparison detail

1 <?php 1 <?php
2 /** 2 /**
3  * Copyright © Magento, Inc. All rights reserved. 3  * Copyright © Magento, Inc. All rights reserved.
4  * See COPYING.txt for license details. 4  * See COPYING.txt for license details.
5  */ 5  */
6  6 
7 // phpcs:disable Magento2.Templates.ThisInTemplate.FoundThis 7 // phpcs:disable Magento2.Templates.ThisInTemplate.FoundThis
8 // phpcs:disable Generic.WhiteSpace.ScopeIndent.Incorrect 8 // phpcs:disable Generic.WhiteSpace.ScopeIndent.Incorrect
9  9 
10 /* @var $block \Magento\Catalog\Block\Product\AbstractProduct */ 10 /* @var $block \Magento\Catalog\Block\Product\AbstractProduct */
11 ?> 11 ?>
12  12 
13 <?php 13 <?php
14 $columns = "columns4"; 14 $columns = "columns4";
15 $_imagehelper = $this->helper('Magento\Catalog\Helper\Image'); 15 $_imagehelper = $this->helper('Magento\Catalog\Helper\Image');
16 $_portohelper = $this->helper('Smartwave\Porto\Helper\Data'); 16 $_portohelper = $this->helper('Smartwave\Porto\Helper\Data');
17 $review_model = $_portohelper->getModel('\Magento\Review\Model\Review'); 17 $review_model = $_portohelper->getModel('\Magento\Review\Model\Review');
18 $_category_config = $_portohelper->getConfig('porto_settings/category'); 18 $_category_config = $_portohelper->getConfig('porto_settings/category');
19 $_category_grid_config = $this->helper('Smartwave\Porto\Helper\Data')->getConfig('porto_settings/category_grid'); 19 $_category_grid_config = $this->helper('Smartwave\Porto\Helper\Data')->getConfig('porto_settings/category_grid');
20 switch ($type = $block->getType()) { 20 switch ($type = $block->getType()) {
21  21 
22     case 'related-rule': 22     case 'related-rule':
23         if ($exist = $block->hasItems()) { 23         if ($exist = $block->hasItems()) {
24             $type = 'related'; 24             $type = 'related';
25             $class = $type; 25             $class = $type;
26  26 
27             $image = 'related_products_list'; 27             $image = 'related_products_list';
28             $title = __('Related Products'); 28             $title = __('Related Products');
29             $items = $block->getAllItems(); 29             $items = $block->getAllItems();
30             $limit = $block->getPositionLimit(); 30             $limit = $block->getPositionLimit();
31             $shuffle = (int) $block->isShuffled(); 31             $shuffle = (int) $block->isShuffled();
32             $canItemsAddToCart = $block->canItemsAddToCart(); 32             $canItemsAddToCart = $block->canItemsAddToCart();
33  33 
34             $showWishlist = true; 34             $showWishlist = true;
35             $showCompare = true; 35             $showCompare = true;
36             $showCart = false; 36             $showCart = false;
37             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 37             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
38             $description = false; 38             $description = false;
39         } 39         }
40     break; 40     break;
41  41 
42     case 'related': 42     case 'related':
43         /** @var \Magento\Catalog\Block\Product\ProductList\Related $block */ 43         /** @var \Magento\Catalog\Block\Product\ProductList\Related $block */
44         if ($exist = $block->getItems()->getSize()) { 44         if ($exist = $block->getItems()->getSize()) {
45             $type = 'related'; 45             $type = 'related';
46             $class = $type; 46             $class = $type;
47  47 
48             $image = 'related_products_list'; 48             $image = 'related_products_list';
49             $title = __('Related Products'); 49             $title = __('Related Products');
50             $items = $block->getItems(); 50             $items = $block->getItems();
51             $limit = 0; 51             $limit = 0;
52             $shuffle = 0; 52             $shuffle = 0;
53             $canItemsAddToCart = $block->canItemsAddToCart(); 53             $canItemsAddToCart = $block->canItemsAddToCart();
54  54 
55             $showWishlist = true; 55             $showWishlist = true;
56             $showCompare = true; 56             $showCompare = true;
57             $showCart = false; 57             $showCart = false;
58             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 58             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
59             $description = false; 59             $description = false;
60         } 60         }
61     break; 61     break;
62  62 
63     case 'upsell-rule': 63     case 'upsell-rule':
64         if ($exist = $block->hasItems()) { 64         if ($exist = $block->hasItems()) {
65             $type = 'upsell'; 65             $type = 'upsell';
66             $class = $type; 66             $class = $type;
67  67 
68             $image = 'upsell_products_list'; 68             $image = 'upsell_products_list';
69             $title = __('We found other products you might like!'); 69             $title = __('We found other products you might like!');
70             $items = $block->getAllItems(); 70             $items = $block->getAllItems();
71             $limit = $block->getPositionLimit(); 71             $limit = $block->getPositionLimit();
72             $shuffle = (int) $block->isShuffled(); 72             $shuffle = (int) $block->isShuffled();
73  73 
74             $showWishlist = false; 74             $showWishlist = false;
75             $showCompare = false; 75             $showCompare = false;
76             $showCart = false; 76             $showCart = false;
77             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 77             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
78             $description = false; 78             $description = false;
79             $canItemsAddToCart = false; 79             $canItemsAddToCart = false;
80         } 80         }
81     break; 81     break;
82  82 
83     case 'upsell': 83     case 'upsell':
84         /** @var \Magento\Catalog\Block\Product\ProductList\Upsell $block */ 84         /** @var \Magento\Catalog\Block\Product\ProductList\Upsell $block */
85         if ($exist = count($block->getItemCollection()->getItems())) { 85         if ($exist = count($block->getItemCollection()->getItems())) {
86             $type = 'upsell'; 86             $type = 'upsell';
87             $class = $type; 87             $class = $type;
88             $upsell_columns = $_portohelper->getConfig('porto_settings/product/upsell_columns'); 88             $upsell_columns = $_portohelper->getConfig('porto_settings/product/upsell_columns');
89             if($upsell_columns) 89             if($upsell_columns)
90                 $columns = ""; 90                 $columns = "";
91             $image = 'upsell_products_list'; 91             $image = 'upsell_products_list';
92             $title = __('We found other products you might like!'); 92             $title = __('We found other products you might like!');
93             $items = $block->getItemCollection()->getItems(); 93             $items = $block->getItemCollection()->getItems();
94             $limit = $block->getItemLimit('upsell'); 94             $limit = $block->getItemLimit('upsell');
95             $shuffle = 0; 95             $shuffle = 0;
96  96 
97             $showWishlist = false; 97             $showWishlist = true;
98             $showCompare = false; 98             $showCompare = true;
99             $showCart false; 99             $showCart true;
100             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 100             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
101             $description = false; 101             $description = false;
102             $canItemsAddToCart = false; 102             $canItemsAddToCart = false;
103         } 103         }
104     break; 104     break;
105  105 
106     case 'crosssell-rule': 106     case 'crosssell-rule':
107         /** @var \Magento\Catalog\Block\Product\ProductList\Crosssell $block */ 107         /** @var \Magento\Catalog\Block\Product\ProductList\Crosssell $block */
108         if ($exist = $block->hasItems()) { 108         if ($exist = $block->hasItems()) {
109             $type = 'crosssell'; 109             $type = 'crosssell';
110             $class = $type; 110             $class = $type;
111  111 
112             $image = 'cart_cross_sell_products'; 112             $image = 'cart_cross_sell_products';
113             $title = __('More Choices:'); 113             $title = __('More Choices:');
114             $items = $block->getItemCollection(); 114             $items = $block->getItemCollection();
115  115 
116             $showWishlist = true; 116             $showWishlist = true;
117             $showCompare = false; 117             $showCompare = true;
118             $showCart = true; 118             $showCart = true;
119             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 119             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
120             $description = false; 120             $description = false;
121             $canItemsAddToCart = false; 121             $canItemsAddToCart = false;
122         } 122         }
123     break; 123     break;
124  124 
125     case 'crosssell': 125     case 'crosssell':
126         /** @var \Magento\Catalog\Block\Product\ProductList\Crosssell $block */ 126         /** @var \Magento\Catalog\Block\Product\ProductList\Crosssell $block */
127         if ($exist = $block->getItemCount()) { 127         if ($exist = $block->getItemCount()) {
128             $type = 'crosssell'; 128             $type = 'crosssell';
129             $class = $type; 129             $class = $type;
130  130 
131             $image = 'cart_cross_sell_products'; 131             $image = 'cart_cross_sell_products';
132             $title = __('More Choices:'); 132             $title = __('More Choices:');
133             $items = $block->getItems(); 133             $items = $block->getItems();
134             $columns = "columns4"; 134             $columns = "columns4";
135  135 
136             $showWishlist = true; 136             $showWishlist = true;
137             $showCompare = false; 137             $showCompare = true;
138             $showCart = true; 138             $showCart = true;
139             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 139             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
140             $description = false; 140             $description = false;
141             $canItemsAddToCart = false; 141             $canItemsAddToCart = false;
142         } 142         }
143     break; 143     break;
144  144 
145     case 'new': 145     case 'new':
146         if ($exist = $block->getProductCollection()) { 146         if ($exist = $block->getProductCollection()) {
147             $type = 'new'; 147             $type = 'new';
148             $mode = 'grid'; 148             $mode = 'grid';
149             $type = $type . ' ' . $mode; 149             $type = $type . ' ' . $mode;
150  150 
151             $class = 'widget' . ' ' . $type; 151             $class = 'widget' . ' ' . $type;
152  152 
153             $image = 'new_products_content_widget_grid'; 153             $image = 'new_products_content_widget_grid';
154             $title = __('New Products'); 154             $title = __('New Products');
155             $items = $exist; 155             $items = $exist;
156  156 
157             $showWishlist = true; 157             $showWishlist = true;
158             $showCompare = true; 158             $showCompare = true;
159             $showCart = true; 159             $showCart = true;
160             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW; 160             $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
161             $description = ($mode == 'list') ? true : false; 161             $description = ($mode == 'list') ? true : false;
162             $canItemsAddToCart = false; 162             $canItemsAddToCart = false;
163         } 163         }
164     break; 164     break;
165  165 
166     case 'other': 166     case 'other':
167     break; 167     break;
168 } 168 }
169  169 
170 $image = 'category_page_grid'; 170 $image = 'category_page_grid';
171 $hover_image = 'category_page_grid-hover'; 171 $hover_image = 'category_page_grid-hover';
172 $image_width = ($_category_config['ratio_width'])?$_category_config['ratio_width']:300; 172 $image_width = ($_category_config['ratio_width'])?$_category_config['ratio_width']:300;
173 $image_height = ($_category_config['ratio_height'])?$_category_config['ratio_height']:300; 173 $image_height = ($_category_config['ratio_height'])?$_category_config['ratio_height']:300;
174 ?> 174 ?>
175  175 
176 <?php if ($exist) :?> 176 <?php if ($exist) :?>
177  177 
178 <?php if ($type == 'related' || $type == 'upsell') :?> 178 <?php if ($type == 'related' || $type == 'upsell') :?>
179 <?php if ($type == 'related') :?> 179 <?php if ($type == 'related') :?>
180 <div class="block <?= $block->escapeHtmlAttr($class) ?>" data-mage-init='{"relatedProducts":{"relatedCheckbox":".related.checkbox"}}' data-limit="<?= $block->escapeHtmlAttr($limit) ?>" data-shuffle="<?= /* @noEscape */ $shuffle ?>"> 180 <div class="block <?= $block->escapeHtmlAttr($class) ?>" data-mage-init='{"relatedProducts":{"relatedCheckbox":".related.checkbox"}}' data-limit="<?= $block->escapeHtmlAttr($limit) ?>" data-shuffle="<?= /* @noEscape */ $shuffle ?>">
181     <?php else :?> 181     <?php else :?>
182     <div class="block <?= $block->escapeHtmlAttr($class) ?> porto-products title-border-bottom" data-mage-init='{"upsellProducts":{}}' data-limit="<?= $block->escapeHtmlAttr($limit) ?>" data-shuffle="<?= /* @noEscape */ $shuffle ?>"> 182     <div class="block <?= $block->escapeHtmlAttr($class) ?> porto-products title-border-bottom" data-mage-init='{"upsellProducts":{}}' data-limit="<?= $block->escapeHtmlAttr($limit) ?>" data-shuffle="<?= /* @noEscape */ $shuffle ?>">
183         <?php endif; ?> 183         <?php endif; ?>
184         <?php else :?> 184         <?php else :?>
185         <div class="block <?= $block->escapeHtmlAttr($class) ?>"> 185         <div class="block <?= $block->escapeHtmlAttr($class) ?>">
186             <?php endif; ?> 186             <?php endif; ?>
187             <div class="section-title slider-title"> 187             <div class="section-title slider-title">
188                 <strong id="block-<?= $block->escapeHtmlAttr($class) ?>-heading" role="heading" aria-level="2"><?= $block->escapeHtml($title) ?></strong> 188                 <strong id="block-<?= $block->escapeHtmlAttr($class) ?>-heading" role="heading" aria-level="2"><?= $block->escapeHtml($title) ?></strong>
189             </div> 189             </div>
190             <div class="block-content content" aria-labelledby="block-<?= $block->escapeHtmlAttr($class) ?>-heading"> 190             <div class="block-content content" aria-labelledby="block-<?= $block->escapeHtmlAttr($class) ?>-heading">
191                 <?php if ($type == 'related' && $canItemsAddToCart) :?> 191                 <?php if ($type == 'related' && $canItemsAddToCart) :?>
192                     <div class="block-actions"> 192                     <div class="block-actions">
193                         <?= $block->escapeHtml(__('Check items to add to the cart or')) ?> 193                         <?= $block->escapeHtml(__('Check items to add to the cart or')) ?>
194                         <button type="button" class="action select" role="button" data-role="select-all"><span><?= $block->escapeHtml(__('select all')) ?></span></button> 194                         <button type="button" class="action select" role="button" data-role="select-all"><span><?= $block->escapeHtml(__('select all')) ?></span></button>
195                     </div> 195                     </div>
196                 <?php endif; ?> 196                 <?php endif; ?>
197                 <div class="products wrapper grid products-grid  <?php if ($type == 'upsell' || $type == 'crosssell'): ?><?php echo $columns; ?><?php endif; ?> products-grid products-<?php /* @escapeNotVerified */ echo $type; ?><?php if($type  == 'related'):?> small-list<?php endif;?>"> 197                 <div class="products wrapper grid products-grid  <?php if ($type == 'upsell' || $type == 'crosssell'): ?><?php echo $columns; ?><?php endif; ?> products-grid products-<?php /* @escapeNotVerified */ echo $type; ?><?php if($type  == 'related'):?> small-list<?php endif;?>">
198                     <div class="products list items product-items <?php if ($type == 'related' || $type == 'upsell'): ?><?php if ($type == 'upsell'): ?>products-slider <?php endif;?>owl-carousel<?php endif; ?><?php if ($type == 'upsell'): ?> show-dots-title-right dots-style-1<?php endif; ?><?php if($type  == 'related'):?> show-nav-title<?php endif;?>"> 198                     <div class="products list items product-items <?php if ($type == 'related' || $type == 'upsell'): ?><?php if ($type == 'upsell'): ?>products-slider <?php endif;?>owl-carousel<?php endif; ?><?php if ($type == 'upsell'): ?> show-dots-title-right dots-style-1<?php endif; ?><?php if($type  == 'related'):?> show-nav-title<?php endif;?>">
199                         <?php $iterator = 0; ?> 199                         <?php $iterator = 0; ?>
200 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php foreach ($items as $_item): ?> 200 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php foreach ($items as $_item): ?>
201 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $available = ''; ?> 201 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $available = ''; ?>
202 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->isComposite() && $_item->isSaleable() && $type == 'related'): ?> 202 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->isComposite() && $_item->isSaleable() && $type == 'related'): ?>
203 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->getRequiredOptions()): ?> 203 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->getRequiredOptions()): ?>
204 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $available = 'related-available'; ?> 204 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $available = 'related-available'; ?>
205 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 205 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
206 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 206 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
207 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($type == 'related'): ?> 207 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($type == 'related'): ?>
208 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 208 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
209 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $iterator ++; 209 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $iterator ++;
210 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($iterator % 2 == 1) 210 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($iterator % 2 == 1)
211 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       echo '<div class="item product product-item" style="display: none;">'; 211 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       echo '<div class="item product product-item" style="display: none;">';
212 »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 212 »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
213 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php elseif ($type == 'upsell'): ?> 213 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php elseif ($type == 'upsell'): ?>
214 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo($iterator++ == 0) ? '<div class="item product product-item" style="display: none;">' : '</div><div class="item product product-item" style="display: none;">' ?> 214 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo($iterator++ == 0) ? '<div class="item product product-item" style="display: none;">' : '</div><div class="item product product-item" style="display: none;">' ?>
215 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 215 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
216 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php /* @escapeNotVerified */ echo($iterator++ == 0) ? '<div class="item product product-item">' : '</div><div class="item product product-item">' ?> 216 »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php /* @escapeNotVerified */ echo($iterator++ == 0) ? '<div class="item product product-item">' : '</div><div class="item product product-item">' ?>
217 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 217 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
218                             <div class="product-item-info <?= /* @noEscape */ $available ?>"> 218                             <div class="product-item-info <?= /* @noEscape */ $available ?>">
219                                 <?php /* @escapeNotVerified */ echo '<!-- ' . $image . '-->' ?> 219                                 <?php /* @escapeNotVerified */ echo '<!-- ' . $image . '-->' ?>
220 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="<?php echo $_item->getProductUrl() ?>" class="product photo product-item-photo" tabindex="-1"> 220 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="<?php echo $_item->getProductUrl() ?>" class="product photo product-item-photo" tabindex="-1">
221 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 221 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
222 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($type == 'related') { 222 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($type == 'related') {
223 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $_category_config['aspect_ratio'] = 0; 223 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $_category_config['aspect_ratio'] = 0;
224 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $image_width = 300; 224 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $image_width = 300;
225 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $image_height = 300; 225 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $image_height = 300;
226 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       } 226 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       }
227 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($_category_config['aspect_ratio']) 227 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($_category_config['aspect_ratio'])
228 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImage = $_imagehelper->init($_item, $image)->constrainOnly(FALSE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($image_width); 228 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImage = $_imagehelper->init($_item, $image)->constrainOnly(FALSE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($image_width);
229 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       else 229 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       else
230 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImage = $_imagehelper->init($_item, $image)->resize($image_width, $image_height); 230 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImage = $_imagehelper->init($_item, $image)->resize($image_width, $image_height);
231 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImageUrl = $productImage->getUrl(); 231 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productImageUrl = $productImage->getUrl();
232 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 232 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
233 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <img class="product-image-photo default_image" src="<?php echo $productImageUrl; ?>" alt="<?php echo $productImage->getLabel(); ?>" alt=""/> 233 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <img class="product-image-photo default_image" src="<?php echo $productImageUrl; ?>" alt="<?php echo $productImage->getLabel(); ?>" alt=""/>
234 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($_category_config['alternative_image']): ?> 234 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($_category_config['alternative_image']): ?>
235 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 235 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
236 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($_category_config['aspect_ratio']) 236 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($_category_config['aspect_ratio'])
237 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImage = $_imagehelper->init($_item, $hover_image)->constrainOnly(FALSE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($image_width); 237 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImage = $_imagehelper->init($_item, $hover_image)->constrainOnly(FALSE)->keepAspectRatio(TRUE)->keepFrame(FALSE)->resize($image_width);
238 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       else 238 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       else
239 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImage = $_imagehelper->init($_item, $hover_image)->resize($image_width, $image_height); 239 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImage = $_imagehelper->init($_item, $hover_image)->resize($image_width, $image_height);
240 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImageUrl = $productHoverImage->getUrl(); 240 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $productHoverImageUrl = $productHoverImage->getUrl();
241 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 241 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
242 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($productImageUrl != str_replace("/thumbnail/","/small_image/",$productHoverImageUrl)): ?> 242 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($productImageUrl != str_replace("/thumbnail/","/small_image/",$productHoverImageUrl)): ?>
243 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <img class="product-image-photo hover_image" src="<?php echo $productHoverImageUrl; ?>" alt="<?php echo $productHoverImage->getLabel(); ?>" alt=""/> 243 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <img class="product-image-photo hover_image" src="<?php echo $productHoverImageUrl; ?>" alt="<?php echo $productHoverImage->getLabel(); ?>" alt=""/>
244 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 244 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
245 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 245 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
246 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a> 246 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a>
247 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product details product-item-details"> 247 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product details product-item-details">
248 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <strong class="product name product-item-name"><a class="product-item-link" title="<?php echo $block->escapeHtml($_item->getName()) ?>" href="<?php /* @escapeNotVerified */ echo $block->getProductUrl($_item) ?>"> 248 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <strong class="product name product-item-name"><a class="product-item-link" title="<?php echo $block->escapeHtml($_item->getName()) ?>" href="<?php /* @escapeNotVerified */ echo $block->getProductUrl($_item) ?>">
249 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo $block->escapeHtml($_item->getName()) ?></a> 249 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo $block->escapeHtml($_item->getName()) ?></a>
250 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </strong> 250 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </strong>
251  251 
252 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($_category_config['rating_star']): ?> 252 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($_category_config['rating_star']): ?>
253 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 253 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
254 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $review_model->getEntitySummary($_item); 254 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $review_model->getEntitySummary($_item);
255 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $review_html = $block->getReviewsSummaryHtml($_item, $templateType); 255 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $review_html = $block->getReviewsSummaryHtml($_item, $templateType);
256 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 256 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
257 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($review_html): ?> 257 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if($review_html): ?>
258 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo $review_html; ?> 258 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo $review_html; ?>
259 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 259 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
260 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product-reviews-summary short"> 260 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product-reviews-summary short">
261 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="rating-summary"> 261 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="rating-summary">
262 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span class="label"><span>Rating:</span></span> 262 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span class="label"><span>Rating:</span></span>
263 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="rating-result" title="0%"> 263 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="rating-result" title="0%">
264 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span style="width:0"><span>0%</span></span> 264 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span style="width:0"><span>0%</span></span>
265 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 265 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
266 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 266 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
267 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 267 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
268 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 268 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
269 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 269 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
270 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php /* @escapeNotVerified */ echo $block->getProductPrice($_item); ?> 270 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php /* @escapeNotVerified */ echo $block->getProductPrice($_item); ?>
271  271 
272 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->isComposite() && $_item->isSaleable() && $type == 'related'): ?> 272 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->isComposite() && $_item->isSaleable() && $type == 'related'): ?>
273 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->getRequiredOptions()): ?> 273 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if (!$_item->getRequiredOptions()): ?>
274 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="field choice related"> 274 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="field choice related">
275 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <input type="checkbox" class="checkbox related" id="related-checkbox<?php /* @escapeNotVerified */ echo $_item->getId() ?>" name="related_products[]" value="<?php /* @escapeNotVerified */ echo $_item->getId() ?>" /> 275 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <input type="checkbox" class="checkbox related" id="related-checkbox<?php /* @escapeNotVerified */ echo $_item->getId() ?>" name="related_products[]" value="<?php /* @escapeNotVerified */ echo $_item->getId() ?>" />
276 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <label class="label" for="related-checkbox<?php /* @escapeNotVerified */ echo $_item->getId() ?>"><span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span></label> 276 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <label class="label" for="related-checkbox<?php /* @escapeNotVerified */ echo $_item->getId() ?>"><span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span></label>
277 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 277 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
278 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 278 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
279 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 279 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
280  280 
281 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($showWishlist || $showCompare || $showCart): ?> 281 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($showWishlist || $showCompare || $showCart): ?>
282 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product actions product-item-actions"> 282 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="product actions product-item-actions">
    283                                         <?php if ($showWishlist): ?>
    284 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($this->helper('Magento\Wishlist\Helper\Data')->isAllow() && $showWishlist): ?>
    285 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="#" data-post='<?php /* @escapeNotVerified */ echo $block->getAddToWishlistParams($_item); ?>'  class="action actions-secondary towishlist" data-action="add-to-wishlist" title="<?php /* @escapeNotVerified */ echo __('Add to Wish List') ?>">
    286 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Wish List') ?></span>
    287 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a>
    288 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
    289 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
283 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($showCart): ?> 290 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($showCart): ?>
284 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="actions-primary"> 291 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="actions-primary">
285 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->isSaleable()): ?> 292 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->isSaleable()): ?>
286 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->getTypeInstance()->hasRequiredOptions($_item)): ?> 293 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->getTypeInstance()->hasRequiredOptions($_item)): ?>
287 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <button class="action tocart primary" data-mage-init='{"redirectUrl": {"url": "<?php /* @escapeNotVerified */ echo $block->getAddToCartUrl($_item) ?>"}}' type="button" title="<?php /* @escapeNotVerified */ echo __('Add to Cart') ?>"> 294 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <button class="action tocart primary" data-mage-init='{"redirectUrl": {"url": "<?php /* @escapeNotVerified */ echo $block->getAddToCartUrl($_item) ?>"}}' type="button" title="<?php /* @escapeNotVerified */ echo __('Add to Cart') ?>">
288 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span> 295 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span>
289 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </button> 296 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </button>
290 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 297 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
291 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $postDataHelper = $this->helper('Magento\Framework\Data\Helper\PostHelper'); 298 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php $postDataHelper = $this->helper('Magento\Framework\Data\Helper\PostHelper');
292 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $postData = $postDataHelper->getPostData($block->getAddToCartUrl($_item), ['product' => $_item->getEntityId()]) 299 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $postData = $postDataHelper->getPostData($block->getAddToCartUrl($_item), ['product' => $_item->getEntityId()])
293 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 300 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
294 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <button class="action tocart primary" 301 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <button class="action tocart primary"
295 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       data-post='<?php /* @escapeNotVerified */ echo $postData; ?>' 302 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       data-post='<?php /* @escapeNotVerified */ echo $postData; ?>'
296 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       type="button" title="<?php /* @escapeNotVerified */ echo __('Add to Cart') ?>"> 303 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       type="button" title="<?php /* @escapeNotVerified */ echo __('Add to Cart') ?>">
297 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span> 304 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Cart') ?></span>
298 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </button> 305 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </button>
299 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 306 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
300 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 307 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
301 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->getIsSalable()): ?> 308 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($_item->getIsSalable()): ?>
302 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="stock available"><span><?php /* @escapeNotVerified */ echo __('In stock') ?></span></div> 309 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="stock available"><span><?php /* @escapeNotVerified */ echo __('In stock') ?></span></div>
303 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 310 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
304 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="stock unavailable"><span><?php /* @escapeNotVerified */ echo __('Out of stock') ?></span></div> 311 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="stock unavailable"><span><?php /* @escapeNotVerified */ echo __('Out of stock') ?></span></div>
305 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 312 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
306 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 313 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
307 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 314 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
308 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 315 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
309  316 
310 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($showWishlist || $showCompare): ?> 317 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($
showCompare): ?>
311 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <div class="secondary-addto-links actions-secondary" data-role="add-to-links">    
312 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($this->helper('Magento\Wishlist\Helper\Data')->isAllow() && $showWishlist): ?>    
313 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="#" data-post='<?php /* @escapeNotVerified */ echo $block->getAddToWishlistParams($_item); ?>'  class="action towishlist" data-action="add-to-wishlist" title="<?php /* @escapeNotVerified */ echo __('Add to Wish List') ?>">    
314 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Wish List') ?></span>    
315 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a>    
316 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>    
317 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($block->getAddToCompareUrl() && $showCompare): ?> 318 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($block->getAddToCompareUrl() && $showCompare): ?>
318 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 319 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
319 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $compareHelper = $this->helper('Magento\Catalog\Helper\Product\Compare'); 320 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       $compareHelper = $this->helper('Magento\Catalog\Helper\Product\Compare');
320 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 321 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
321 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="#" class="action 
tocompare"
 322 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <a href="#" class="action actions-secondary tocompare"
322 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        data-post='<?php /* @escapeNotVerified */ echo $compareHelper->getPostDataParams($_item);?>' 323 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        data-post='<?php /* @escapeNotVerified */ echo $compareHelper->getPostDataParams($_item);?>'
323 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        data-role="add-to-links" 324 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        data-role="add-to-links"
324 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        title="<?php /* @escapeNotVerified */ echo __('Add to Compare'); ?>"> 325 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »        title="<?php /* @escapeNotVerified */ echo __('Add to Compare'); ?>">
325 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Compare') ?></span> 326 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <span><?php /* @escapeNotVerified */ echo __('Add to Compare') ?></span>
326 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a> 327 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </a>
327 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 328 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
328 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>    
329 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 329 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
330 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 330 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
331 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 331 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
332 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div> 332 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       </div>
333                             </div> 333                             </div>
334 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($type == 'related'): ?> 334 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php if ($type == 'related'): ?>
335 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php 335 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php
336 »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($iterator == count($items) || $iterator % 2 == 0) 336 »       »       »       »       »       »       »       »       »       »       »       »       »       »       if($iterator == count($items) || $iterator % 2 == 0)
337 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       echo '</div>'; 337 »       »       »       »       »       »       »       »       »       »       »       »       »       »       »       echo '</div>';
338 »       »       »       »       »       »       »       »       »       »       »       »       »       ?> 338 »       »       »       »       »       »       »       »       »       »       »       »       »       ?>
339 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?> 339 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php else: ?>
340 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo($iterator == count($items)) ? '</div>' : '' ?> 340 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php echo($iterator == count($items)) ? '</div>' : '' ?>
341 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?> 341 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endif; ?>
342 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endforeach ?> 342 »       »       »       »       »       »       »       »       »       »       »       »       »       <?php endforeach ?>
343                     </div> 343                     </div>
344                 </div> 344                 </div>
345             </div> 345             </div>
346         </div> 346         </div>
347 »       »       »       »       »       <?php if ($type == 'related'): ?> 347 »       »       »       »       »       <?php if ($type == 'related'): ?>
348 »       »       »       »       »       »       <script type="text/javascript"> 348 »       »       »       »       »       »       <script type="text/javascript">
349 »       »       »       »       »       »       »       »       require([ 349 »       »       »       »       »       »       »       »       require([
350 »       »       »       »       »       »       »       »       »       »       'jquery', 350 »       »       »       »       »       »       »       »       »       »       'jquery',
351 »       »       »       »       »       »       »       »       »       »       'owl.carousel/owl.carousel.min' 351 »       »       »       »       »       »       »       »       »       »       'owl.carousel/owl.carousel.min'
352 »       »       »       »       »       »       »       »       ], function ($) { 352 »       »       »       »       »       »       »       »       ], function ($) {
353 »       »       »       »       »       »       »       »       »       »       $(".products-related .owl-carousel").owlCarousel({ 353 »       »       »       »       »       »       »       »       »       »       $(".products-related .owl-carousel").owlCarousel({
354 »       »       »       »       »       »       »       »       »       »       »       »       nav: true, 354 »       »       »       »       »       »       »       »       »       »       »       »       nav: true,
355 »       »       »       »       »       »       »       »       »       »       »       »       dots: false, 355 »       »       »       »       »       »       »       »       »       »       »       »       dots: false,
356 »       »       »       »       »       »       »       »       »       »       »       »       items: 1, 356 »       »       »       »       »       »       »       »       »       »       »       »       items: 1,
357 »       »       »       »       »       »       »       »       »       »       »       »       nav: true 357 »       »       »       »       »       »       »       »       »       »       »       »       nav: true
358 »       »       »       »       »       »       »       »       »       »       }); 358 »       »       »       »       »       »       »       »       »       »       });
359 »       »       »       »       »       »       »       »       }); 359 »       »       »       »       »       »       »       »       });
360 »       »       »       »       »       »       </script> 360 »       »       »       »       »       »       </script>
361 »       »       »       »       »       <?php endif; ?> 361 »       »       »       »       »       <?php endif; ?>
362 »       »       »       »       »       <?php if ($type == 'upsell'): ?> 362 »       »       »       »       »       <?php if ($type == 'upsell'): ?>
363 »       »       »       »       »       »       »       <script type="text/javascript"> 363 »       »       »       »       »       »       »       <script type="text/javascript">
364 »       »       »       »       »       »       »       »       »       require([ 364 »       »       »       »       »       »       »       »       »       require([
365 »       »       »       »       »       »       »       »       »       »       'jquery', 365 »       »       »       »       »       »       »       »       »       »       'jquery',
366 »       »       »       »       »       »       »       »       »       »       'owl.carousel/owl.carousel.min' 366 »       »       »       »       »       »       »       »       »       »       'owl.carousel/owl.carousel.min'
367 »       »       »       »       »       »       »       »       »       ], function ($) { 367 »       »       »       »       »       »       »       »       »       ], function ($) {
368 »       »       »       »       »       »       »       »       »       »       $(".products-upsell .owl-carousel").owlCarousel({ 368 »       »       »       »       »       »       »       »       »       »       $(".products-upsell .owl-carousel").owlCarousel({
369 »       »       »       »       »       »       »       »       »       »       »       margin: 0, 369 »       »       »       »       »       »       »       »       »       »       »       margin: 0,
370 »       »       »       »       »       »       »       »       »       »       »       nav: false, 370 »       »       »       »       »       »       »       »       »       »       »       nav: false,
371 »       »       »       »       »       »       »       »       »       »       »       dots: true, 371 »       »       »       »       »       »       »       »       »       »       »       dots: true,
372 »       »       »       »       »       »       »       »       »       »       »       responsive: { 372 »       »       »       »       »       »       »       »       »       »       »       responsive: {
373 »       »       »       »       »       »       »       »       »       »       »       »       0: { 373 »       »       »       »       »       »       »       »       »       »       »       »       0: {
374 »       »       »       »       »       »       »       »       »       »       »       »       »       items:2 374 »       »       »       »       »       »       »       »       »       »       »       »       »       items:2
375 »       »       »       »       »       »       »       »       »       »       »       »       }, 375 »       »       »       »       »       »       »       »       »       »       »       »       },
376 »       »       »       »       »       »       »       »       »       »       »       »       768: { 376 »       »       »       »       »       »       »       »       »       »       »       »       768: {
377 »       »       »       »       »       »       »       »       »       »       »       »       »       items:3 377 »       »       »       »       »       »       »       »       »       »       »       »       »       items:3
378 »       »       »       »       »       »       »       »       »       »       »       »       }, 378 »       »       »       »       »       »       »       »       »       »       »       »       },
379 »       »       »       »       »       »       »       »       »       »       »       »       992: { 379 »       »       »       »       »       »       »       »       »       »       »       »       992: {
380 »       »       »       »       »       »       »       »       »       »       »       »       »       items:<?php echo $upsell_columns-1; ?> 380 »       »       »       »       »       »       »       »       »       »       »       »       »       items:<?php echo $upsell_columns-1; ?>
381 »       »       »       »       »       »       »       »       »       »       »       »       }, 381 »       »       »       »       »       »       »       »       »       »       »       »       },
382 »       »       »       »       »       »       »       »       »       »       »       »       1200: { 382 »       »       »       »       »       »       »       »       »       »       »       »       1200: {
383 »       »       »       »       »       »       »       »       »       »       »       »       »       items:<?php echo $upsell_columns; ?> 383 »       »       »       »       »       »       »       »       »       »       »       »       »       items:<?php echo $upsell_columns; ?>
384 »       »       »       »       »       »       »       »       »       »       »       »       } 384 »       »       »       »       »       »       »       »       »       »       »       »       }
385 »       »       »       »       »       »       »       »       »       »       »       } 385 »       »       »       »       »       »       »       »       »       »       »       }
386 »       »       »       »       »       »       »       »       »       »       }); 386 »       »       »       »       »       »       »       »       »       »       });
387 »       »       »       »       »       »       »       »       »       }); 387 »       »       »       »       »       »       »       »       »       });
388 »       »       »       »       »       »       »       </script> 388 »       »       »       »       »       »       »       </script>
389 »       »       »       »       »       <?php endif; ?> 389 »       »       »       »       »       <?php endif; ?>
390         <?php endif;?> 390         <?php endif;?>