- Topic
- Replies
- Freshness
- Voices
Unable to import template (json format)?
Posted by: PTDIDear the Expert, I run fresh install WP 6.6.1 with Elementor 3.23.4, why I'm unable to import template in json format, it returns "Invalid template type" I have set "enabled" to: -Switch Editor Loader Method - Enable Unfiltered...
- 1
- 2
Change order of profile fields
Posted by: Mej de CastroYou can change the order of profile fields using the following filter in your functions.php file: function prefix_filter_profile_fields( $fields ){ // Enter your new fields order here return $fields; } add_filter( 'ctdb_profile_fields', 'prefix_filter_profile_fields' ); The $fields list looks like: $fields = array( 'display_name' => array( 'id'...
- 0
- 1
- Posted by: Meagan Parrish
Is there the ability to have some posts/content be public facing/not have to have a membership to see? We are thinking of putting out some posts that are "teasers" to get people looking but...
- 1
- 2
Add topics archive page to menu
Posted by: Mej de CastroYou can add your topics archive page to your menu by including it as a custom link. Go to Appearance > Menus and select the menu where you’d like to add the archive. From...
- 0
- 1
- Posted by: Mej de Castro
In the Pro version, it’s possible to allow users to upload an image as the featured image for the topic. By default, only png and jpg file types are permitted. However, you can change this...
- 0
- 1
- Posted by: Mej de Castro
In the Pro version, you can enable wp_editor on the new topic submission form, allowing users to add formatting. To change the parameters, you can add a filter, e.g.: function me_filter_editor_args( $args ) { $args['teeny']...
- 0
- 1
How to display your topics in the table view?
Posted by: Mej de CastroIf you prefer to display your topics in a table layout rather than using the default archive templates, you need to add the shortcode to a page. Then, go to Settings > Discussion Topics >...
- 0
- 1
List of Discussion Board Shortcodes
Posted by: Mej de CastroDiscussion Board has the following shortcodes: – displays your new topic form to permitted users – displays a list of published topics like an archive. This shortcode accepts the following parameters: orderby – can be ‘date’, ‘title’,...
- 0
- 1
Alternative templates when displaying topics
Posted by: Mej de CastroSingle Topics Each topic posted will appear on its own page. By default, this uses the theme’s default single.php template. The advantage of this is that your topic pages will fit perfectly into your theme. If...
- 0
- 1
Discussion Board’s General tab functionality
Posted by: Mej de CastroThe General tab has the main settings for the plugin. This includes settings for the pages that are created when the plugin is activated, front-end messages, and options for posting new topics and for registration and...
- 0
- 1