In your dashboard, go to Discussion Board > Settings. The Pro version has a number of extra tabs. The Pro tab has some extra settings.
Topic Slug
Add your prefer topic slug on the text field if you don’t want to use the default slug “discussion-topics”.
To reflect the new structure, you must resave your permalinks.
Upload featured image
Enable this to allow users to upload a new image as a featured image when they create a new topic.
Enable editor
Enable this to use the standard WordPress editor (WYSIWYG) on the front end for users creating a new topic.
Allow media button
Adds a media button to the editor, allowing users to insert media into their content. This option requires Enable Editor to be enabled. Before enabling this feature, review the notes above regarding permissions and settings for allowing users to upload images.
Enable editor in comments
Enable a simple WYSIWYG editor for comments.
Always allow comments
Select this to override your site’s moderation settings. All comments for topics will automatically be approved.
Time
Time Format
Choose how dates and times are displayed for comments and post dates. Select Freshness to show relative timestamps (e.g., “2 hours ago”) or Standard to display the date and time in a standard format.
Freshness time format
Define time and date format for latest activity fields.
Status
Status Scope
Select Board to define statuses individually per board, or Global to use the same statuses across all boards.
Poster can set status
Allow the poster to set the status on the New Topic form
Status updater
Choose who can update a topic’s status. You can allow only the user who created the topic to change its status, or allow any user who has contributed to the topic to update it.
Breadcrumb navigation
What is a breadcrumb navigation?
The image below shows how a breadcrumb is structured, allowing a user to step back along a trail and not lose their way.

Breadcrumbs help the user keep track of where they are on the site, allowing users to click back to the parent Board from a Topic or direct back to the page where all Boards are displayed.
Enabling breadcrumbs
Breadcrumbs can work with the Boards feature or just with the standard topics. To enable breadcrumbs, go to Discussion Board > Settings and click on the General tab. Ensure that Boards are enabled then select the ‘Enable Breadcrumbs‘ setting:

You can also select the format in the ‘Breadcrumbs Format’ select box. The format allows you to select whether or not to include the home page in the breadcrumb and to specify whether you are using Boards.
Note that if you are using a format that includes Boards, e.g. Home > Boards > Board > Topic, you’ll need to ensure that the ‘Boards page’ setting on the General tab points towards your Boards page:

Likewise, if you are using a format that uses the main Discussion Topics page, e.g. Home > Topics > Topic, you need to ensure that the ‘Discussion topics page’ is set correctly:

This is all you need to enable breadcrumbs.
Breadcrumb position
By default, the breadcrumb displays at the start of the content, which in most themes will be under the page title. For the breadcrumb to display on the Board taxonomy pages, you need to ensure the ‘Override theme template’ checkbox is selected on the Boards tab.
However, if you would prefer to position the breadcrumb elsewhere on the page, you can add some simple code to your theme. In your functions.php file, first remove the actions that add the breadcrumb:
if( function_exists( 'ctdb_breadcrumb_navigation' ) ) {
remove_action( 'ctdb_do_breadcrumb', 'ctdb_breadcrumb_navigation' );
add_action( 'ctdb_child_do_breadcrumb', 'ctdb_breadcrumb_navigation' );
}
Then, place the following line of code in your theme files where you would like the breadcrumb to appear. A typical place would be in the header.php file inside the opening wrappers for your content:
<?php do_action( 'ctdb_child_do_breadcrumb' ); ?>
You can experiment with your theme to find the best position for the breadcrumb. Remember to use a child theme to avoid automatic updates overwriting any custom code.
