GX-Bug #59463 » MainProductsListingFix.patch
src/templates/Honeygrid/module/specials_main.html (date 1539090522000) | ||
---|---|---|
12 | 12 |
{/block} |
13 | 13 |
|
14 | 14 |
{block name="module_specials_main_product_listing"} |
15 |
{$module_content} |
|
15 |
{$module_content_html}
|
|
16 | 16 |
{/block} |
17 | 17 |
{/block} |
18 | 18 |
{/if} |
src/templates/Honeygrid/module/new_products_default.html (date 1539090466000) | ||
---|---|---|
7 | 7 |
{/block} |
8 | 8 |
|
9 | 9 |
{block name="module_new_products_default_listing"} |
10 |
{$module_content} |
|
10 |
{$module_content_html}
|
|
11 | 11 |
{/block} |
12 | 12 |
{/block} |
13 | 13 |
{/if} |
src/system/classes/listing/SpecialsMainContentView.inc.php (date 1539090511000) | ||
---|---|---|
66 | 66 |
$coo_product = MainFactory::create_object('product', array($t_specials['products_id'])); |
67 | 67 |
$specials[] = $coo_product->buildDataArray($coo_product->data); |
68 | 68 |
} |
69 |
|
|
70 |
$this->content_array['module_content'] = $this->generateSpecialsProductsListing($specials); |
|
69 |
$this->content_array['module_content'] = $specials; |
|
70 |
$this->content_array['module_content_html'] = $this->generateSpecialsProductsListing($specials);
|
|
71 | 71 |
} |
72 | 72 |
} |
73 | 73 |
else |
src/system/classes/listing/TopProductsMainContentView.inc.php (date 1539090474000) | ||
---|---|---|
64 | 64 |
$coo_product = MainFactory::create_object('product', array($t_new_products['products_id'])); |
65 | 65 |
$topProducts[] = $coo_product->buildDataArray($coo_product->data); |
66 | 66 |
} |
67 |
|
|
68 |
$this->content_array['module_content'] = $this->generateTopProductsListing($topProducts); |
|
67 |
|
|
68 |
$this->content_array['module_content'] = $topProducts; |
|
69 |
$this->content_array['module_content_html'] = $this->generateTopProductsListing($topProducts); |
|
69 | 70 |
} |
70 | 71 |
else |
71 | 72 |
{ |
src/templates/Honeygrid/module/upcoming_products.html (date 1539090566000) | ||
---|---|---|
7 | 7 |
{/block} |
8 | 8 |
|
9 | 9 |
{block name="module_upcoming_products_product_listing"} |
10 |
{$module_content} |
|
10 |
{$module_content_html}
|
|
11 | 11 |
{/block} |
12 | 12 |
{/if} |
13 | 13 |
|
src/system/classes/listing/UpcomingProductsMainContentView.inc.php (date 1539090551000) | ||
---|---|---|
66 | 66 |
$coo_product = MainFactory::create_object('product', array($t_upcoming['products_id'])); |
67 | 67 |
$upcomingProducts[] = $coo_product->buildDataArray($coo_product->data); |
68 | 68 |
} |
69 |
|
|
70 |
$this->content_array['module_content'] = $this->generateUpcomingProductsListing($upcomingProducts); |
|
69 |
$this->content_array['module_content'] = $upcomingProducts; |
|
70 |
$this->content_array['module_content_html'] = $this->generateUpcomingProductsListing($upcomingProducts);
|
|
71 | 71 |
} |
72 | 72 |
} |
73 | 73 |
else |