Need a little help on configuration

Replies
3
Voices
2
Freshness
Followers

1

Hi, there – new user here, need a little advice. We’ve set up the WPDB so that the links to it are only available to users logged-into WP. Per the screen shot below:

  • Where do I edit this default “Description” text? I can’t find the page https://theratogs.com/discussion-topics/ in WP\Pages|All Pages, for some reason.
  • Can I suppress the display of the “Leave a comment” and “3 comments” if the user is not logged in?

TIA,

Lee

 

  • Hi Lee,

    My apology for not getting back to you sooner. The word "Description." can be updated on the plugin files. With regards to suppressing the display of "leave a comment" and "3 comments" for not login users, I'm afraid we haven't added that feature just yet, but it's been submitted in our list of features or change requests to be considered by our developers for future releases.

    Thank you and please let me know if you have other questions.

    - WPDB

     

    • >> The word "Description." can be updated on the plugin files.

      Where do I do this?  There's no setting I can find anywhere in the plugin panels.

  • We usually recommend to use the board based layout for archives.

    However, if you'd like to use the theme archive page layout, you will likely need to edit the themes archive template to either remove that label or implement a filter to override that field in the post type meta. Something like this:

    add_filter( 'discussion-topics_post_type_args', 'wpdbd_override_cpt_args', 10, 1 );
    function wpdbd_override_cpt_args( $args ) {
    $args['description'] = "New description here";
    return $args;
    }