Documentation

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:

  1. Edit a page or post.
  2. Click the + (Add Block) button.
  3. Search for Brandix or Brands.
  4. Select one of the following blocks:
    • Brands Grid
    • Brands Slider
  5. 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
AttributeDescription
columnsNumber of columns.
limitMaximum brands to display.
orderbySort by name, ID, count, etc.
orderASC or DESC.
show_logoShow brand logo.
show_nameShow brand name.
show_countShow product count.
show_descShow brand description.
hide_emptyHide empty brands.
layoutGrid layout style.
image_sizeLogo image size.
includeInclude specific brand IDs.
omitExclude specific brand IDs.
classCustom CSS class.

Brand Slider

Slider Shortcode
[brandix_slider limit="12" slides_per_view="5" autoplay="yes"]
Slider Attributes
AttributeDescription
limitMaximum brands.
columnsColumns (if supported).
orderbySort field.
orderASC or DESC.
hide_emptyHide empty brands.
includeInclude specific brands.
omitExclude specific brands.
show_logoShow logo.
show_nameShow brand name.
show_countShow product count.
image_sizeLogo size.
slides_per_viewVisible slides.
space_betweenSpace between slides.
loopEnable looping.
autoplayEnable autoplay.
autoplay_delayAutoplay delay in milliseconds.
pause_on_hoverPause autoplay on hover.
show_arrowsShow navigation arrows.
show_paginationShow 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.