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 610 Bricks code tutorials with BricksLabs Pro

Related Tutorials..

Using WP Grid Builder Facets with Bricks’ Query Loop

Using WP Grid Builder Facets with Bricks’ Query Loop

Update: This tutorial was written before WPGB had a Bricks add-on. Now, it is advisable to use that add-on instead. Get it from here. Updated…
Categories:
Pro
Sort Posts by Meta Box Group Sub Field in Bricks

Sort Posts by Meta Box Group Sub Field in Bricks

This Pro tutorial provides the steps to order posts in Bricks by the value of a Number-type of sub field that is inside a Meta…
Pro
6 Random Featured Posts in Alphabetical Order in Bricks

6 Random Featured Posts in Alphabetical Order in Bricks

How to output x number of random posts with a specific meta value set, in Alphabetical order.
Categories:
Pro
Nested Meta Box Query Loop Inside a CPT Query Loop in Bricks

Nested Meta Box Query Loop Inside a CPT Query Loop in Bricks

This Pro tutorial provides the steps for setting up a cloneable Meta Box group query inside a CPT query in Bricks. Scenario: CPT: course Meta…
Categories:
Pro
Filtering Meta Box Cloneable Group by Select Subfield for Multiple Bricks Query Loops with Conditional Output

Filtering Meta Box Cloneable Group by Select Subfield for Multiple Bricks Query Loops with Conditional Output

In the Bricks Facebook group a user asks: Consider this cloneable Meta Box field group for a Custom Post Type called Tour: with the Tour…
Bricks Templates Query Loop

Bricks Templates Query Loop

How display Bricks Templates with saved screenshots in a query loop.
Categories:
Pro
Filtering a Bricks Terms query on Term archive pages

Filtering a Bricks Terms query on Term archive pages

On product category archives, how to show product type names but only those that the current product category has.