• Resolved mistervoyager

    (@mistervoyager)


    Hi Spencer,
    Great work. You save my months.
    This is just what i’ve looking for…

    i’ve a litlle problem in navigation bar.
    i coludn’t change the names “Status” and “Milestone” to Turkish. Except “Recently…” and “My Tickets”.

    How can i accomplish this ?

    Thanks,

    Recep

Viewing 4 replies - 1 through 4 (of 4 total)
  • Those names are taken from the labels defined when the custom taxonomy is registered. To change this, you can filter the labels when the taxonomy is registered in your child theme:

    add_filter( 'qc_status_labels', 'my_custom_labels', 1, 12 )
    
    function my_custom_labels( $labels ) {
         $labeles = array(
    
         );
    
         return $labels;
    }

    See http://codex.wordpress.org/Function_Reference/register_taxonomy#Parameters for the labels.

    Thread Starter mistervoyager

    (@mistervoyager)

    i’ll be read and back.
    thaks agin.

    Thread Starter mistervoyager

    (@mistervoyager)

    i’m little bit lost and tired. Whats name of the file wich i have to do “add_filter funciton…”
    navigation.php? i’ve couldn’t 🙁

    by the way, i’ve changed “singularity_name” when i have failed to write “add_filter” function in milestones.php file

    but im confussed
    is it right?

    Thread Starter mistervoyager

    (@mistervoyager)

    thanks for precius replies.
    i’ve integrated it to center of my agency cms.
    i loved your GUI more than basecamp.
    very very thank you Spencer.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Navigation bar menu names..’ is closed to new replies.