diff --git a/view/frontend/layout/cms_page_view.xml b/view/frontend/layout/cms_page_view.xml new file mode 100644 index 0000000..0a87c14 --- /dev/null +++ b/view/frontend/layout/cms_page_view.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/view/frontend/web/js/productheight.js b/view/frontend/web/js/productheight.js index 96cfe07..2bca05f 100644 --- a/view/frontend/web/js/productheight.js +++ b/view/frontend/web/js/productheight.js @@ -6,8 +6,9 @@ define([ return { productheight: function() { $('.product-items').each(function() { - $(this).children('').matchHeight(); + $(this).find('.product-item-name').matchHeight(); + $(this).find('.price-box').matchHeight(); }); } } -}); \ No newline at end of file +});