thelia / top-products-module
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 0
Open Issues: 19
Type:thelia-module
Requires
- thelia/installer: ~1.1
- dev-master
- 1.1.0
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/json5-1.0.2
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/express-4.18.2
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/ajv-6.12.6
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/tar-4.4.19
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/lodash-4.17.21
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/ssri-6.0.2
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/axios-0.21.1
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/ini-1.3.8
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/templates/backOffice/default/top_products/assets/acorn-6.4.1
This package is auto-updated.
Last update: 2024-11-04 15:06:53 UTC
README
This module allows to create selections of top products in category and brand.
Installation
Manually
- Copy the module into
<thelia_root>/local/modules/
directory and be sure that the name of the module is TopProducts. - Activate it in your thelia administration panel
Composer
Add it in your main thelia composer.json file
composer thelia/top-products-module:~1.1.0
Usage
This module adds a new tab Top products
in categories and brands where you can create selections and add products in selections.
To retrieve the products of a selections you can use the top_product
loop.
The top_products loop
Input arguments
The top_products
loop extend the loop product
. All the arguments of the product loop are therefore available.
Output variables
The output variables are the same as the loop product
.
Exemple
{loop
type="top_product"
name="top_product_loop"
top_product_element_key="category"
top_product_element_id=$category_id
top_product_selection_code="my-selection"
}
...
{/loop}