15th Apr '23
/
0 comments

Post Specific Footers in Bricks using Meta Box

This Pro tutorial provides the steps to output post-specific footer using Meta Box' Post type of field when using Bricks.

Sample screenshots below.

Course CPT item:

Course 1's footer has been set to be Footer 1

Footer CPT item:

Populating Footer 1's custom fields

Course 1 on the front end:

Another course, Course 2 whose Footer field has been set to Footer 2:

We shall set this up such that single course pages that don't have a footer set and all other pages of the site (like the homepage, blog posts index) will output the field values from a "Default Footer".

Step 1

Install and activate Meta Box and Meta Box AIO plugins.

Create Course and Footer CPTs.

Step 2

Create a field group for the Course CPT having a Post type of field set to footer post type.

Step 3

Create a field group for the Footer CPT having a Group field like this [field group export JSON (mirror)]:

Step 4

Create your post-specific footers.

Make sure to also create a default footer.

Edit your Course CPT entries and select the corresponding footers.

Step 5

Edit your Footer template with Bricks and paste this JSON.

In the outer loop, we are querying the Footers. But this is going to pull all the footer CPT items. In the next step, we shall limit this to only the footer that has been set (if set) for the current single course (when on a single course page) or the default footer.

In the inner loop, the query is set to "Footer Links" - a custom query type that we are going to create in the next step. Since this does not exist yet, after doing Step 5 you may have to come back and ensure that the query type is set correctly.

The heading text inside the inner loop is set to:

{echo:bl_get_looping_sub_field(header)}

and the Basic Text element's text set to:

{echo:bl_get_looping_sub_field_links}

Step 6

Add the following in child theme's functions.php or a code snippets plugin:

This is a BricksLabs Pro tutorial.

For full access login below or create your BricksLabs Pro account

Get access to all 609 Bricks code tutorials with BricksLabs Pro

Related Tutorials..

Pro
Related Services grouped by Service Categories on Single Branch Posts in Bricks

Related Services grouped by Service Categories on Single Branch Posts in Bricks

How to query ACF relationship fields on single CPT templates.
Categories:
Show Product Categories Count Using Bricks Filter Hook

Show Product Categories Count Using Bricks Filter Hook

Unable to find terms count from the Dynamic Data provided by Bricks theme? It's okay, this simple tutorial shows you how to properly get the…
Categories:
Tags:
Pro
ACF Relationship Select Filter in Bricks

ACF Relationship Select Filter in Bricks

In the BricksLabs Facebook group, a user asks: I'm learning about ACF relationships and attempting to output a list of posts on any given page,…
Categories:
Auto Responsive Grids in Bricks

Auto Responsive Grids in Bricks

This tutorial provides the CSS that can be pasted for automatic responsive grids in Bricks Builder. Posts element Each post will get a right padding…
Meta Box Category Colors in Single Posts

Meta Box Category Colors in Single Posts

Looking to use Meta Box Color Picker fields' values in a single post Bricks template based on the post category? This tutorial shows how. Note:…
Categories:
Tags:
Term-specific single post template in Bricks

Term-specific single post template in Bricks

Updated on 25 Jun 2025 In Reddit a user asks: Template conditional logic to exclude pages with a particular taxonomy term? I can't figure out…