Support » Plugin: WP Glossary » Can We Change the "Term Usage Title"?

  • Is there any way, or could you perhaps add in the future, to change the text on the usage listing. Currently its WP Glossary Term Usage. Since I expect to have readers that are not WordPress savvy I’d like to have something that is just as simple as “Term Usage”.

    Would it be possible to add a field to the Options Menu?

    Additionally I would note:

    1. You note the feature is in beta. Although my site is young the feature appears to be working correctly.
    2. The current usage term does provide some recognition for the plugin. For me it would be okay to keep that recognition in the overall usage term. So perhaps it could be boilerplate that goes after custom field.

    Thanks.

    http://wordpress.org/plugins/wp-glossary/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TCBarrett

    (@tcbarrett)

    Hi dorich

    Glad to hear it is working for you. I’ll look some function/filter for the wording.

    1. May I ask how many terms you have, and how many pages those terms are on. One of the reasons for beta was that I was concerned with performance.

    2. Not sure what you mean, sorry. What ‘recognition’?

    Plugin Author TCBarrett

    (@tcbarrett)

    Try the wpg_term_usage_title filter:

    add_filter( 'wpg_term_usage_title', 'wpg_term_usage_title' );
    function wpg_term_usage_title( $title ){
      return __( 'Term Usage', 'wp-glossary' );
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can We Change the "Term Usage Title"?’ is closed to new replies.