Update Velocity Theme
This commit is contained in:
parent
d70888c28a
commit
26dcef5fb4
|
|
@ -1,5 +1,6 @@
|
|||
@php
|
||||
$count = $velocityMetaData ? $velocityMetaData->featured_product_count : 10;
|
||||
$count = core()->getConfigData('catalog.products.homepage.no_of_featured_product_homepage');
|
||||
$count = $count ? $count : 10;
|
||||
$direction = core()->getCurrentLocale()->direction == 'rtl' ? 'rtl' : 'ltr';
|
||||
@endphp
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
@php
|
||||
$count = $velocityMetaData ? $velocityMetaData->new_products_count : 10;
|
||||
$count = core()->getConfigData('catalog.products.homepage.no_of_new_product_homepage');
|
||||
$count = $count ? $count : 10;
|
||||
$direction = core()->getCurrentLocale()->direction == 'rtl' ? 'rtl' : 'ltr';
|
||||
@endphp
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue