Next to the previous tutorial on the seriescreating a simple listing’ using Meta Box and page builders, we’re going to find out a new way to do it with Breakdance. We use custom fields and taxonomies created by Meta Box to display information about products on an archive page and filter them as well.

We have an archive page that shows a list of restaurants as an example.

example of an archive page that shows a list of restaurants

Video Version

Before Getting Started

In this practice, we will divide the page into 2 sections: one to display the products and their information, and one for filters.

For the products (I meant restaurants), we will need a custom post type, and each one of them will be saved in a post. Your products may have some extra information, so you can use custom fields to save them. In my case, the restaurant’s name and image are the title and feature images of the post. Other information such as status, address, and logo will be saved in different custom fields.

Regarding the filter, it’s based on a custom taxonomy that I created as vouchers.

the page includes 2 sections: one to display the products and their information, and one for filters

To create custom post types, taxonomy and custom fields for products, we need the Meta Box core plugin. You can install it directly from wordpress.org. Besides, you may want some Meta Box extensions for the advanced features. You can install them individually or use Meta Box AIO.

Here are the extensions we may need:

  • MB Custom Post Type: to create a custom post type and custom taxonomy for the restaurants;
  • Meta Box Builder: to have a UI on the backend to create the custom fields efficiently;
  • MB Admin Columns (optional): to display custom fields as a column in the admin screen.

Also, Breakdance to build the page.

Create a New Custom Post Type

Go to Meta Box > Post Types to create a new post type for your products.

Go to Meta Box > Post Types to create a new post type for your products

After publishing, you will see a new menu in your dashboard, that’s your created custom post type.

Create a New Taxonomy

As mentioned, we’ll have a filter for the products based on a taxonomy as vouchers. The voucher will be divided into some discount levels, and each of them will be a term of this taxonomy.

Go to Meta Box > Taxonomies to create a new taxonomy.

Go to Meta Box > Taxonomies to create a new taxonomy

In the Advanced section, check the Hierarchical option if you want to show the taxonomy in a hierarchy.

You may want to check the Show admin column option to show it as an admin column. This setting is available when you have the MB Admin Columns extension.

In the Advanced section, check the Hierarchical option to show the taxonomy in a hierarchy, and Show admin column option to show it as an admin column

In the Post Types tab, choose your products post type that you’ve just created to apply this taxonomy to it.

In the Post Types tab, choose the products post type to apply taxonomy to it.

Now, you can add some term for your product’s taxonomy.

add some term for your product’s taxonomy

Create Custom Fields

Just go to Meta Box > Custom Fields > Add New to create some custom fields for your products’s extra information if any.

go to Meta Box > Custom Fields > Add New to create some custom fields for your products’s extra information

Here are some typical custom fields I created.

some typical custom fields I created

If you need more fields, freely choose any type of field for your case. Meta Box has more than 40 field types that you can benefit from.

After creating the fields, move to the Settings tab. Then choose the Location as Post type and select your products post type to apply these fields to it.

move to the Settings tab, choose the Location as Post type and select your products post type to apply these fields to it

After publishing, go to a post editor, you will see the terms of the created taxonomy and the custom fields displayed. Just add some information for your products.

the terms of the created taxonomy and the custom fields displayed in the post editor

Create a Global Block

To display information about each product, we should create a global block. Go to Breakdance > Global Blocks then create a new one.

Go to Breakdance > Global Blocks to create global block

Set a post for preview.

Set a post for preview

First, add an Image element to display the restaurant’s image.

add an Image element to display the restaurant’s image

Click on the Insert Dynamic Data button.

Click on the Insert Dynamic Data button

Then choose Featured Image in the Post section.

choose Featured Image in the Post section

Next, add a Text Link element for the product name.

add a Text Link element for the product name

It’s from the post title, so click on the Insert Dynamic Data button and look for it.

click on the Insert Dynamic Data button and look for post title

This element has a setting that allows you to embed a link into this title. There’s also an option to insert dynamic data to it.

embed a link into this title by using insert dynamic data in the Link box

Choose Post Permalink inside.

Choose Post Permalink inside

Go ahead, add a Text element for showing the address.

add a Text element for showing the address

This information is saved in a custom field created with Meta Box, so also insert dynamic data to this element.

click on the insert dynamic data button to choose the source of data

Look for the Metabox section, you will see the name of the custom field. Choose it.

Look for the Metabox section and choose Address

In the same way, add an Image element to show the logo, also insert dynamic data to get the image of logo.

add an Image element to show the logo, also insert dynamic data to get the image of logo

Do likewise for the status information. Add a Text element, insert dynamic data from the Status field.

for the Status information, add a Text element, insert dynamic data from the Status field

Now, you can style each element in this global block by changing their settings. I changed them to have this look.

style each element in this global block by changing their settings

Create the Page

Go to Pages and create a new page as usual, then edit it in Breakdance.

Go to Pages and create a new page as usual, then edit it in Breakdance

First, add a Section element to cover all the content of the page.

add a Section element to cover all the content of the page

Inside the section, add the Heading element to the page title.

Inside the section, add the Heading element to the page title

Get Posts

To display the list of posts, add the Post Loop Builder element.

To display the list of posts, add the Post Loop Builder element

In the Global Block box, choose the Restaurant Block that we’ve made in the previous step.

In the Global Block box, choose the Restaurant Block that we’ve made in the previous step

Then go to the Query section to set a custom query to get posts.

go to the Query section to set a custom query to get posts

Select the name of the post type you use for your products.

Select the name of the post type you use for your products

There are also some other settings for the query in this popup. You can customize the query as you want. In this case, I left them all as default.

Immediately, you will see the products displayed.

the products displayed

Now, let’s add a filter bar to this page.

Add Filters

In the settings of the Post Loop Builder element, there is the Filter Bar section. Click on the Enable button to enable a filter bar for this element.

In the settings of the Post Loop Builder element, Click on the Enable button to enable a filter bar for this element.

In the Type box, choose the taxonomy that we created for the products.

In the Type box, choose the taxonomy that we created for the products

A list of the discount levels that I set as the terms of the taxonomy will be displayed.

A list of the discount levels that I set as the terms of the taxonomy will be displayed.

Next, you can enable the All Filter option.

enable the All Filter option

That's how I complete adding the filter bar to the page.

Style the Page

You also can style each element on the page a little bit to have a better look.

style each element on the page a little bit to have a better look

All the status dots are green. We should use some JavaScript to automatically change the color of the dot following the value saved in the Status custom field. So, add a Code Block element to the page.

add a Code Block element to the page to automatically change the color of the dot following the value saved in the Status custom field

And, add some code into the block.

add some code into the block

Now go to the front end and you can see the final look of the simple listing page.

go to the front end and you can see the final look of the simple listing page

The filter also works well.

The filter works well

Last Words

It's easy to create a simple listing by using Meta Box and Breakdance. Furthermore, Breakdance supports creating filters in an effortless way. So, let’s give it a try and share the results with us.

Hopefully, this tutorial will make sense to you. If you are looking for creating a simple listing page with another page builder, please look for it in this series.

By the way, we also have a series for creating product pages that you may be interested in, just come and see.

If you have any suggestions for future tutorials, feel free to leave a comment below. Thanks for reading!

Other case studies you might be interested in

  1. Create A Dynamic Landing Page in WordPress Using Custom Field
  2. Create a Filter to Find Hotels by Location
  3. Create an OTA Website Like Booking.com with Meta Box Plugin - P1: Create a Page to Introduce Hotel Rooms
  4. Create an OTA Website Like Booking.com with Meta Box Plugin - P2: Create Filters on the Archive Page
  5. Create an OTA Website Like Booking.com with Meta Box Plugin - P3: Create Filters for Single Hotel Pages
  6. Create Dynamic Favicon in WordPress using Meta Box plugin
  7. Create Posts Series in WordPress Using Meta Box
  8. Display The Latest Products Section - P2 - Using Meta Box and Elementor
  9. Display The Latest Products Section - P3 - Using Meta Box And Oxygen
  10. How to Add Custom Fields for WooCommerce - P2 - Using MB Views
  11. How to Add Custom Fields to Display Banners using Meta Box Plugin
  12. How to Add Guest Authors and Guest Posts - Using Meta Box
  13. How to Add Related Posts - Using Custom Fields
  14. How to Build a Hotel Booking Website Using Meta Box - P1
  15. How to Build a Hotel Booking Website Using Meta Box - P2 - Booking Page in Backend
  16. How to Build a Hotel Booking Website Using Meta Box - P4 - Booking Management Page
  17. How to Build a Hotel Booking Website Using Meta Box – P3 – Booking Page for Customer
  18. How to Create a Classified Ads Website using Meta Box
  19. How to Create a Custom 404 Page in WordPress - P1 - Using Meta Box and Elementor
  20. How to create a FAQs page - P5 - Using Meta Box and Breakdance
  21. How to Create a Product Page - P2 - Using Meta Box and Oxygen
  22. How to Create a Product Page - P3 - Using Meta Box and Bricks
  23. How to Create a Product Page - P4 - Using Meta Box and Elementor
  24. How to Create a Product Page - P5 - Using Meta Box and Gutenberg
  25. How to Create a Product Page - P6 -Using Meta Box and Breakdance
  26. How to Create a Product Page - P7 - Using Meta Box + Kadence
  27. How to Create a Product Page - P8 - Using Meta Box and Brizy
  28. How to Create a Product Page - P9 - Using Meta Box and Divi
  29. How to Create a Product Page using Meta Box Plugin
  30. How to Create a Recipe - P2 - Using Meta Box and Oxygen
  31. How to Create a Recipe - P3 - Using Meta Box and Elementor
  32. How to Create a Recipe - P4 - Using Meta Box and Bricks
  33. How to Create a Recipe - P5 - Using Meta Box and Zion
  34. How to Create a Recipe - P6 - Using Meta Box and Brizy
  35. How to Create a Recipe - P7 - Using Meta Box and Breakdance
  36. How to Create a Recipe - P8 - Using Meta Box and Kadence
  37. How to Create a Recipe - P9 - Using Meta Box and Divi
  38. How to Create a Recipe with Meta Box Plugin
  39. How to Create a Simple Listing - P2 - Using Meta Box and Bricks
  40. How to Create a Simple Listing - P3 - Using Meta Box and Breakdance
  41. How to Create a Simple Listing - P4 - Using Meta Box and Elementor
  42. How to Create a Team Members Page - P1- Using Meta Box and Elementor
  43. How to Create a Team Members Page - P2 - Using Meta Box and Oxygen
  44. How to Create a Team Members Page - P3 - Using Meta Box and Bricks
  45. How to Create a Team Members Page - P4 - Just Meta Box
  46. How to Create a Team Members Page - P6 - using Meta Box and Breakdance
  47. How to Create a Team Members Page - P7 - Using Meta Box and Kadence
  48. How to Create a Video Gallery Page - P2 - Using Meta Box + Bricks
  49. How to Create a Video Gallery Page - P3 - Using Meta Box and Breakdance
  50. How to Create a Video Gallery Page - P4 - Using Meta Box + Elementor
  51. How to Create a Video Gallery Page - P5 - Using MB Views
  52. How to Create a Video Gallery Page - P6 - Using Meta Box and Zion
  53. How to Create a Video Gallery Page Using Meta Box + Oxygen
  54. How to Create ACF Flexible Content Field with Meta Box
  55. How to Create an Auto-Updated Cheat Sheet in WordPress
  56. How to Create an FAQs Page - P1 - Using Meta Box and Elementor
  57. How to create an FAQs page - P2 - Using Meta Box and Oxygen
  58. How to create an FAQs page - P4 - Using Meta Box and Bricks
  59. How to Create an FAQs Page - P6 - Using MB Views
  60. How to Create an FAQs Page - P7 - Using Meta Box and Divi
  61. How to Create an FAQs Page - P8 - Using Meta Box and Kadence
  62. How to Create an FAQs Page - P9 - Using MB Blocks
  63. How to Create an FAQs Page -P3- Using Meta Box
  64. How to Create Buttons with Dynamic Link using Custom Fields
  65. How to Create Category Thumbnails & Featured Images Using Custom Fields
  66. How to Create Download and Preview Buttons - P1 - Using Meta Box and Bricks
  67. How to Create Download and Preview Buttons - P2 - Using Meta Box and Oxygen
  68. How to Create Download and Preview Buttons - P3 - Using MB Views
  69. How to Create Download Buttons in WordPress - Using Custom Fields
  70. How to Create Dynamic Landing Page in WordPress - P1 - Using Meta Box and Elementor
  71. How to Create Dynamic Landing Page in WordPress - P2 - Using Meta Box and Bricks
  72. How to Create Menus for Restaurants - P1 - Using Meta Box and Elementor
  73. How to Create Menus for Restaurants - P2- Using Meta Box and Bricks
  74. How to Create Notification Using Custom HTML Field
  75. How to Create Online Admission Form for School or University
  76. How to Create Online Reservation Form for Restaurants using Meta Box
  77. How to Create Relationships - P1 - Using Meta Box and Oxygen
  78. How to Create Relationships - P2 - Using Meta Box and Bricks
  79. How to Create Relationships - P3 - Using MB Views
  80. How to Create Relationships - P4 - Using Meta Box and Breakdance
  81. How to Create Taxonomy Thumbnails & Featured Images - P2 - Using Meta Box and Oxygen
  82. How to Create Taxonomy Thumbnails & Featured Images - P3 - Using Meta Box and Bricks
  83. How to Create Taxonomy Thumbnails & Featured Images - P4 - Using MB Views
  84. How to Create YouTube Video Timestamps on WordPress Website - P1 - Using MB Views
  85. How to Display a Video Playlist - P1- Using MB Views
  86. How To Display All Listings On A Map With Meta Box
  87. How to Display Author Bio in WordPress - P1 - Using Meta Box and Bricks
  88. How to Display Author Bio in WordPress - P2 - Using MB Views
  89. How to Display Dynamic Banners in WordPress - P3 - Using MB Views
  90. How to Display Images from Cloneable Fields - P1 - with Gutenberg
  91. How to Display Images from Cloneable Fields - P2 - Using Meta Box and Oxygen
  92. How to Display Images from Cloneable Fields - P3 - with Elementor
  93. How to Display Images from Cloneable Fields - P4 - with Bricks
  94. How to Display Opening Hours for Restaurants - P1 - Using Meta Box + Gutenberg
  95. How to Display Opening Hours for Restaurants - P2 - Using Meta Box and Oxygen
  96. How to Display Product Variations - P1 - Using Meta Box and Gutenberg
  97. How to Display Product Variations - P2 - Using Meta Box and Oxygen
  98. How to Display Product Variations - P3 - Using Meta Box and Bricks
  99. How to Display the Dynamic Banners - P2 - Using Meta Box and Bricks

Leave a Reply

Your email address will not be published. Required fields are marked *