Any way to use a traditional template part inside a bricks page?

My understanding last I used BB was that any custom code needs to come in via shortcodes or the BB code module.

Just checking to make sure I didnt miss something.

Use the template element to place a Bricks template, or shortcode.

To add off @Bricklayer:

You can add custom reusable code in many ways:

  • Use [shortcode]
  • Create a bricks template:
    ** Use template widget in Bricks Page Builder to pull in that bricks template (if you add the template via template widget in many pages, you can simply update the template to globally change it everywhere)
    ** Or, use bricks [shortcode] of a bricks template
  • You can use code widget and do echo do_shortcode('[shortcode]');
  • You can also use hooks to add code dynamically for most flexibility & easy code maintenance!

To summarize, based on these answers it seems to be confirmed you cant use template parts, only php code directly added via shortcodes, code or hooks.

No, you can add the “Template” widget in bricks, and load a template through that?

Did I misunderstand you?

My other points were other alternatives to using the built-in Bricks “Template” widget (powerful for global website sections, etc).