Discussion Topics

Forum Post Post Teasers

Replies1Voices2FreshnessMay 17, 2024Followers0May 16, 2024 at 7:08 amMeagan ParrishIs 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 then…View Topic

Forum Post Post Teasers Read More

Change order of profile fields

Replies0Voices1FreshnessJuly 25, 2024Followers1May 9, 2024 at 10:01 amMej 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:…View Topic

Change order of profile fields Read More

Change permitted file types

Replies0Voices1FreshnessMay 9, 2024Followers0May 9, 2024 at 10:01 amMej de CastroIn 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 with…View Topic

Change permitted file types Read More

Filter wp_editor args

Replies0Voices1FreshnessMay 9, 2024Followers0May 9, 2024 at 10:01 amMej de CastroIn 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 ) {  …View Topic

Filter wp_editor args Read More

List of Discussion Board Shortcodes

Replies0Voices1FreshnessMay 9, 2024Followers0May 9, 2024 at 10:00 amMej 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’,…View Topic

List of Discussion Board Shortcodes Read More