Important

You are browsing the documentation for version 4.1 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get the updated information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

Customize Product List Page

Every product list page contains the current category_id and the category_ids in the layout context. You can use these values to evaluate the layout conditions. When you customize any page, remember to use Symfony Profiler and look into the Layout section, where the current layout context data and actual layout tree can be found.

Please see the Debug Information section for more details.

Static Block Only

For the first case, create the first level category (with id = 8) that contains a static block only.

The page looks the following way:

Static Block only example

Create the layout update:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/static_block_only.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 layout:
     imports:
         -
             id: oro_product_list
             root: featured_products_container
             namespace: featured

     actions:
         - '@setBlockTheme':
             themes: 'AcmeProductBundle:layouts:default/oro_product_frontend_product_index/static_block.html.twig'

         - '@addTree':
             items:
                 product_index_page:
                     blockType: container
                 embedded_example_1:
                     blockType: block
             tree:
                 page_content:
                     product_index_page:
                         embedded_example_1: ~

         - '@setOption':
             id: featured_products
             optionName: items
             optionValue: '=data["featured_products"].getProducts()'

         - '@setOption':
             id: featured_products
             optionName: label
             optionValue: oro.product.featured_products.label

         - '@setOption':
             id: featured_products
             optionName: slider_options
             optionValue: {arrows: true, responsive: [{breakpoint: 1100, settings: {arrows: false}}, {breakpoint: 924, settings: {slidesToShow: 3, arrows: false}}, {breakpoint: 480, settings: {slidesToShow: 2, arrows: false}}]}

         - '@setOption':
             id: featured_product_line_item_form
             optionName: instance_name
             optionValue: featured_products

         - '@add':
             id: featured_products_container
             parentId: product_index_page
             blockType: container

     conditions: 'context["category_id"] in [8]' # affected categories

Create a template:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/static_block.html.twig
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 {% block _featured_products_container_widget %}
     {% set attr = layout_attr_defaults(attr, {
     '~class': ' featured-products'
     }) %}
     {{ block_widget(block, {attr: attr}) }}
 {% endblock %}

 {% block _featured_product_widget %}
     {% set attr = layout_attr_defaults(attr, {
     '~class': ' featured-product'
     }) %}
     {{ block_widget(block, {attr: attr}) }}
 {% endblock %}

 {% block _embedded_example_1_widget %}
     <div class="embedded-list">
         <div class="embedded-list__container">
             <div class=" hero-promo-item">
                 <a href="#" style="float: left;">
                     <div class="hero-promo-item__picture">
                         <img src="{{ asset('/bundles/oroproduct/default/images/what_woud_wear.png') }}">
                     </div>
                 </a>

                 <a href="#" style="float: right;">
                     <div class="hero-promo-item__picture">
                         <img src="{{ asset('/bundles/oroproduct/default/images/luma_bras_tanks.png') }}">
                     </div>
                 </a>

                 <div style="clear: both;"></div>
             </div>

             <br>

             <div class=" hero-promo-item">
                 <a href="#">
                     <div class="hero-promo-item__picture">
                         <img class="hero-promo-item__img" src="{{ asset('/bundles/oroproduct/default/images/womens-main.jpg') }}">
                     </div>
                 </a>

                 <div class="hero-promo-item__info">
                     <div class="hero-promo-item__cover">
                         <div class="hero-promo-item__desc">
                             <a href="#" tabindex="-1">
                                 <span class="hero-promo-item__pretitle">New Luma Yoga Collection</span>
                                 <h2 class="hero-promo-item__title">Yoga is ancient <br/> Clothing shouldn’t be</h2>
                             </a>
                             <a href="#" class="btn theme-btn btn-dark hero-promo-item__view-btn">
                                 Shop New Yoga
                             </a>
                         </div>
                     </div>
                 </div>
             </div>
         </div>
     </div>
 {% endblock %}

Static Block and Products

For the second case, create a second level category (with id = 9) that contains a static block and products.

The page looks the following way:

Static Block and Products example

Create the layout update:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/static_block_and_products.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 layout:
     imports:
         - oro_product_grid

     actions:
         - '@setBlockTheme':
             themes:
                 - 'AcmeProductBundle:layouts:default/oro_product_frontend_product_index/products.html.twig'
                 - 'AcmeProductBundle:layouts:default/oro_product_frontend_product_index/static_block.html.twig'

         - '@addTree':
             items:
                 product_index_page:
                     blockType: container
                 embedded_example_2:
                     blockType: block
                 product_grid_container:
                     blockType: container
             tree:
                 page_content:
                     product_index_page:
                         embedded_example_2: ~
                         product_grid_container: ~

     conditions: 'context["category_id"] in [9]' # affected categories

Extend static block template with our block:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/static_block.html.twig
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 ...

 {% block _embedded_example_2_widget %}
     <div class="embedded-list">
         <div class="embedded-list__container">
             <div class=" hero-promo-item">
                 <a href="#" style="float: left;">
                     <div class="hero-promo-item__picture">
                         <img src="{{ asset('/bundles/oroproduct/default/images/what_woud_wear.png') }}">
                     </div>
                 </a>

                 <a href="#" style="float: right;">
                     <div class="hero-promo-item__picture">
                         <img src="{{ asset('/bundles/oroproduct/default/images/luma_bras_tanks.png') }}">
                     </div>
                 </a>

                 <div style="clear: both;"></div>
             </div>
         </div>
     </div>
 {% endblock %}

 ...

Products Only

For the third case, create a third level category (all ids that are not equal 8 or 9) that contains products only.

The page looks the following way:

Products only example

Create a layout update:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/products_only.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 layout:
     imports:
         - oro_product_grid

     actions:
         - '@setBlockTheme':
             themes: 'AcmeProductBundle:layouts:default/oro_product_frontend_product_index/products.html.twig'
         - '@addTree':
             items:
                 product_index_page:
                     blockType: container
                 product_grid_container:
                     blockType: container
             tree:
                 page_content:
                     product_index_page:
                         product_grid_container: ~

     conditions: 'context["category_id"] not in [8, 9]' # affected categories

Create a template:

src/Acme/Bundle/ProductBundle/Resources/views/layouts/default/oro_product_frontend_product_index/products.html.twig
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
 {% block _product_grid_container_widget %}
     {% set attr = layout_attr_defaults(attr, {
         'data-page-component-module': 'oroui/js/app/components/view-component',
         '~data-page-component-options': {
             view: 'orofrontend/default/js/app/views/footer-align-view',
             elements: {
                 items: '.product-item_gallery-view',
                 footer: '.product-item__qty'
             }
         }
     }) %}

     <div {{ block('block_attributes') }}>
         {{ block_widget(block) }}
     </div>
 {% endblock %}