Adding multiple product slider categories like the one with Featured Products

Let's take our demo as example: http://demo.aa-team.com/tf/kingdom/games/

As you see, there are multiple product sliders besides the one with Featured Products: Consoles, Xbox Games, Playstation Games etc.

These are the shortcodes that we've used for them:

[kingdom_row]
[kingdom_box_headline class="kd_featured"]CONSOLES[/kingdom_box_headline]
[product_category category="consoles-consoles" per_page="6" columns="1" orderby="date" order="desc"]
[/kingdom_row]

[kingdom_row]
[kingdom_box_headline class="kd_featured"]XBOX GAMES[/kingdom_box_headline]
[product_category category="games-games" per_page="6" columns="1" orderby="date" order="desc"]
[/kingdom_row]

[kingdom_row]
[kingdom_box_headline class="kd_featured"]PLAYSTATION GAMES[/kingdom_box_headline]
[product_category category="video-games-video-games" per_page="6" columns="1" orderby="date" order="desc"]
[/kingdom_row]

 

Let's take the first one:

[kingdom_row]
[kingdom_box_headline class="kd_featured"]CONSOLES[/kingdom_box_headline]
[product_category category="consoles-consoles" per_page="6" columns="1" orderby="date" order="desc"]
[/kingdom_row]

- "CONSOLES" would be slider's title - you can write anything you want here

- category="consoles-consoles" - consoles-consoles would be the category slug from Products -> Categories tab (in WP Admin):

 

Make sure the Wordpress editor is in Text mode when pasting the shortcodes!!!

Back To Top