When using the bbPress plugin with the Reign theme, you may want to customize the templates to fit your needs. This guide outlines how to override the bbPress template files within the Reign theme.
Overriding bbPress Templates
To override the bbPress templates, create the following directory structure within your theme and copy the corresponding files from the bbPress plugin.
Directory Structure
reign-child/
└── bbpress/
├── content-single-topic-lead.php
├── form-search.php
├── form-topic.php
├── loop-forum-card.php
├── loop-forums.php
├── loop-replies.php
├── loop-search-forum.php
├── loop-search-reply.php
├── loop-search-topic.php
├── loop-search.php
├── loop-single-reply.php
├── loop-single-topic.php
├── loop-topics.php
└── user-details.php
Steps to Override
- Copy the template files: Copy the desired template files from the bbPress plugin directory (
wp-content/plugins/bbpress/templates/default/bbpress) to the corresponding directories in your theme. - Customize the template files: Edit the copied template files in your theme to meet your customization requirements.
Example File Paths
- Content Single Topic Lead Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic-lead.php - New Path:
reign-child/bbpress/content-single-topic-lead.php
- Original Path:
- Form Search Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/form-search.php - New Path:
reign-child/bbpress/form-search.php
- Original Path:
- Form Topic Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php - New Path:
reign-child/bbpress/form-topic.php
- Original Path:
- Loop Forum Card Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-forum-card.php - New Path:
reign-child/bbpress/loop-forum-card.php
- Original Path:
- Loop Forums Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-forums.php - New Path:
reign-child/bbpress/loop-forums.php
- Original Path:
- Loop Replies Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-replies.php - New Path:
reign-child/bbpress/loop-replies.php
- Original Path:
- Loop Search Forum Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-search-forum.php - New Path:
reign-child/bbpress/loop-search-forum.php
- Original Path:
- Loop Search Reply Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-search-reply.php - New Path:
reign-child/bbpress/loop-search-reply.php
- Original Path:
- Loop Search Topic Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-search-topic.php - New Path:
reign-child/bbpress/loop-search-topic.php
- Original Path:
- Loop Search Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-search.php - New Path:
reign-child/bbpress/loop-search.php
- Original Path:
- Loop Single Reply Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php - New Path:
reign-child/bbpress/loop-single-reply.php
- Original Path:
- Loop Single Topic Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-topic.php - New Path:
reign-child/bbpress/loop-single-topic.php
- Original Path:
- Loop Topics Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.php - New Path:
reign-child/bbpress/loop-topics.php
- Original Path:
- User Details Template:
- Original Path:
wp-content/plugins/bbpress/templates/default/bbpress/user-details.php - New Path:
reign-child/bbpress/user-details.php
- Original Path:
