Products List View
J2Commerce (formerly known as J2Store)
Product Layout is a powerful feature that enables the user to customize the display options and descriptions of the product. In this section, you’ll learn how to create and customize a product layout.
Note: Product layout works only with Joomla articles. If you use SEBLOD / FLEXIcontent / or any other catalog systems, then you may need to configure the product layouts using their menu items.
Create a Product Layout
To create a product layout, go to Joomla! control panel and click on the menu item Menus > Main Menu as shown in the image below.

You will get the list of menus that are already present, as shown in the image below.

To create a new item, click on the New button, and you will get this page.

First, you need to enter the title of the item you create. For example, it is entered with Shop. The alias will be automatically generated based on the title. Then, you have several tabs on this page. Let us see one by one. First is the Details tab.
Details Tab
Here, you choose the Menu Item Type by clicking on the ‘Select’ button. You will get a pop-up window like this:

In this pop-up window, select J2Commerce, and you will get a list to choose from. From the list, select Products List View and close the window. You will see your selection as shown in the image below.
Your menu item is selected, and the link is also created automatically. Click on the Choose a Category text box to choose the product categories listed. You can add many categories in this box. Refer to the image below.

Now, go to the next tab, Common Options.
Common Options Tab

This tab has the common settings for all items. If you want to show images for product options or if you want to add some custom CSS code, you can do that here. Otherwise, you can leave them as they are.
Note: In the Sub-Template option, you have to choose bootstrap5 if your Bootstrap version is 3x.
If you do not want to show the product option price on the frontend, you can set the option to Hide as shown in the image below:
Category View Options Tab
Check the image below:

In this tab, you are setting the configuration for how to display the product in the cart and the features and options to display with the product.
You can display any number of products as you like in the shop. Enter the number of products to be displayed in the text box provided and the number of columns in which the product display is divided. As the number of products increases, the image display size will decrease.
Also, select all other options as per your choice. Refer the next image.

From the image, you can see that there are many options available to set the price, image, size of the image, and many more attributes.
CAUTION: SKU Show/Hide setting can be done in two places, i.e., in configuration setup and in product layout. Product layout setting will be given higher priority, i.e., if SKU is set to Show in configuration and again it is set to Hide in product layout, the configuration setting will be overridden and the SKU will be set to Hide as it is in product layout. As a result, SKU will not be shown in the frontend.
The next image shows the filters.


Filters help narrow the search for a particular product. There are many filters available for the search.
Sort Filter
Search Box
Category Filter
Price Filter
Product Filter
Manufacturer / Brand Filter
Vendor Filter
One or more filters can be applied as per the needs of the customer.
Product View Options Tab
In this tab, you will set the configuration for what to display with the product, like price, description, image etc.
See the image below:

This image shows the options you have to set the configuration for a product on what has to be displayed along with the product. The available options are:
Title
Short Description
Long Description
Regular Price
Special Price
Discount Percentage
SKU
Stock
Main Image
Additional Images
Main Image Width
Additional Image Width
Enable Zoom Effect
Brand
Upsells
Cross Sells
No of columns for related products
Show Specification
Show description and specifications
Show link to product list

Using these parameters, you can determine what the details are and how they should be displayed in the online shop.
Apart from these four tabs, there are four more tabs, and they should be left with the default settings. You need not worry about that.
Now, save the item by clicking the Save & Close button. You will get the screen as shown in the image below.
In this image, you can see that the new menu item created is listed at the top with the other menu items. You can click that to see the products of your store, like the image below.

On this page, you can see the product layout features. The filters are positioned on the right side as per the selected choice. You have the option to filter by price, brand, vendor etc. The regular and special prices are also displayed, along withthe discount percentage variation.
Let us see how images are added in the backend and how they are displayed in the frontend view. Consider the image below:

In the image, you can see the Main and Additional images added to the product configuration. When you configure your product, you will add images of the product for its view in the cart. You add the main image of the product for the main view, supported with additional images. Let us now check how it is viewed in the front end.
Check the image below:

When you click on the product, it will be displayed with a large image and additional images displayed below in a small size. When you hover over the small images, you can see them in place of the main image. The image below explains this activity.

Like this, you can set different product layouts according to your wishes and needs.
Special Module Positions
J2Commerce offers special module positions to place Joomla’s custom HTML module. The following are the custom module positions :
j2store-single-product-top - Top of product view layout
j2store-single-product-bottom - Bottom of product view layout
j2store-product-list-top - Top of product category listing page
j2store-filter-left-top - Top of left filter
j2store-filter-left-bottom - Bottom of left filter
j2store-filter-right-top - Top of right filter
j2store-filter-right-bottom - Bottom of right filter
j2store-product-list-bottom - Bottom of product category listing page
j2store-cart-top - Top of cart page
j2store-cart-bottom - Bottom of cart page
j2store-checkout-top - Top of checkout page
j2store-checkout-bottom - Bottom of checkout page
Avoid the Zoom effect and open the main image in pop-up
To avoid the zoom effect and to bring the image in a pop-up, first thing you have to disable the zoom effect in the admin backend.\
Disable zoom in J2store / J2Commerce product layout
Go to the menu manager and open the menu that links to the J2Store product layout.
Move to the Item view options tab
Set NO to enable Zoom effect.
Disable zoom in the Category blog layout
Go to Extensions > Plugins.
Select the type of content.
Open the Content - J2Store plugin.
Set 'NO' to enable Zoom effect in the Item view tab.
Override view_images.php
Once disabled the zoom effect, follow the override procedure given below :
Copy** /components/com_j2store/templates/default/view_images.php**
to
/templates/YOUR_TEMPLATE/html/com_j2store/templates/default/view_images.php
Open the file and around line no 22 find the below code:
<span class="<?php echo $class; ?>" id="j2store-item-main-image-<?php echo $this->product->j2store_product_id; ?>"><br> <img itemprop="image"<br> alt="<?php echo $this->product->product_name ;?>"<br> class="j2store-product-main-image j2store-img-responsive" src="/<?php echo $image_path.$main_image;?>"<br> width="<?php echo intval($main_image_width); ?>"<br> /><br> </span>
Change this with
<span class="<?php echo $class; ?>" id="j2store-item-main-image-<?php echo $this->product->j2store_product_id; ?>"><br> <?php JHTML::_('behavior.modal', 'a.modal'); ?><br> <a href="<?php echo $this->product->main_image;?>" class="modal"><img itemprop="image"<br> alt="<?php echo $this->product->product_name ;?>"<br> class="j2store-product-main-image j2store-img-responsive"<br> src="<?php echo $image_path.$main_image;?>"<br> width="<?php echo intval($main_image_width); ?>"<br> /></a><br> </span>
Common Problems
Grid layout not working/columns. Why?
The issue seems to be the wrong sub-template.
Open your product list layout menu. In the Common options tab -> set the sub-template as Bootstrap3.
Save
This should solve the issue. If it is already set to Bootstrap 3, then try to set it as Default.
Preview additional image after clicking
copy the file /components/com_j2store/templates/default/view_images.php
to
/templates/YOUR_TEMPLATE/html/com_j2store/templates/default/view_image.php
edit the file and remove the highlighted line fully.
How to add a Category description in the list view
Create a custom module and assign it to the menu that links to the J2Commerce product layout.
Set the module position to j2Commerce-product-list-top.
Save.
Now the custom module will display the description only in list view.
Last updated