Brandix provides multiple ways to display product brands on your WooCommerce store. You can use Gutenberg blocks, shortcodes, Elementor widgets, sidebar widgets, or PHP functions.
Gutenberg Blocks (Recommended)
Brandix includes native Gutenberg blocks for displaying brands.
To add a block:
- Edit a page or post.
- Click the + (Add Block) button.
- Search for Brandix or Brands.
- Select one of the following blocks:
- Brands Grid
- Brands Slider
- Configure the block settings from the right sidebar.
This is the easiest way to display brands without writing any shortcode.
Shortcodes
You can also display brands using shortcodes.
Basic Grid
[brandix]
or
[brandix_brands]
Grid with Options
[brandix columns="6" limit="12" orderby="name" show_count="yes"]
Grid Attributes
| Attribute | Description |
|---|---|
columns | Number of columns. |
limit | Maximum brands to display. |
orderby | Sort by name, ID, count, etc. |
order | ASC or DESC. |
show_logo | Show brand logo. |
show_name | Show brand name. |
show_count | Show product count. |
show_desc | Show brand description. |
hide_empty | Hide empty brands. |
layout | Grid layout style. |
image_size | Logo image size. |
include | Include specific brand IDs. |
omit | Exclude specific brand IDs. |
class | Custom CSS class. |
Brand Slider
Slider Shortcode
[brandix_slider limit="12" slides_per_view="5" autoplay="yes"]
Slider Attributes
| Attribute | Description |
|---|---|
limit | Maximum brands. |
columns | Columns (if supported). |
orderby | Sort field. |
order | ASC or DESC. |
hide_empty | Hide empty brands. |
include | Include specific brands. |
omit | Exclude specific brands. |
show_logo | Show logo. |
show_name | Show brand name. |
show_count | Show product count. |
image_size | Logo size. |
slides_per_view | Visible slides. |
space_between | Space between slides. |
loop | Enable looping. |
autoplay | Enable autoplay. |
autoplay_delay | Autoplay delay in milliseconds. |
pause_on_hover | Pause autoplay on hover. |
show_arrows | Show navigation arrows. |
show_pagination | Show pagination dots. |
PHP Usage
Display the Brand Grid:
<?php echo do_shortcode('[brandix columns="4" limit="8"]'); ?>
Display the Brand Slider:
<?php echo do_shortcode('[brandix_slider limit="12"]'); ?>
Sidebar Widget
Navigate to:
Appearance → Widgets
Add the Product Brands widget to any widget area.
Elementor
Brandix includes Elementor widgets.
Search for:
- Brands Grid
- Brands Slider
Drag the widget onto your page and customize it using the Elementor settings panel.
Which Method Should I Use?
- Gutenberg Blocks – Recommended for Block Editor users.
- Shortcodes – Works with any page builder or classic editor.
- Elementor Widgets – Best for Elementor users.
- Sidebar Widget – Display brands in sidebars or footer widget areas.
- PHP – Ideal for developers integrating Brandix into theme templates or custom code.