This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name=Tile para el producto que mas vende | |
description=Este componente muestra el producto que mas se vende basado en la regla de clasification "top sellers" | |
attribute_definition_group.search_params.name=Parametros para busqueda | |
attribute_definition_group.search_params.description=Parametros para busqueda: escoja una categoria del sitio | |
attribute_definition.category.name=Categoria |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var server = require('server'); | |
server.extend(module.superModule); | |
var PageMgr = require('dw/experience/PageMgr'); | |
server.append('Show', function (req, res, next) { | |
var page = PageMgr.getPage('pd_homepage'); | |
if (page != null && page.isVisible()) { |
OlderNewer