Before you ask please READ THIS

Change Albums Title

in Thirteen Posts: 1
Hello,

How do I change the Albums name on the Dashboard? In addition, can I change the .com/albums/... to another name as well?

I am working on a Real Estate Website. I would like the change the Albums to Listings.

Best,

Paul

Comments

  • AirAir
    Posts: 10,970
    Hello :-)
    art40 said:
    How do I change the Albums name on the Dashboard?
    You can do it by editing plugin wp-content\plugins\a13_thirteen_cpt\a13_thirteen_cpt.php

    There you will find various strings:

    $labels = array(
    'name' => __( 'Albums', 'a13_thirteen_cpt' ),
    'singular_name' => __( 'Album', 'a13_thirteen_cpt' ),
    'add_new' => __( 'Add New', 'a13_thirteen_cpt' ),
    'add_new_item' => __( 'Add New Album', 'a13_thirteen_cpt' ),
    'edit_item' => __( 'Edit Album', 'a13_thirteen_cpt' ),
    'new_item' => __( 'New Album', 'a13_thirteen_cpt' ),
    'view_item' => __( 'View Album', 'a13_thirteen_cpt' ),
    'search_items' => __( 'Search Albums', 'a13_thirteen_cpt' ),
    'not_found' => __( 'Nothing found', 'a13_thirteen_cpt' ),
    'not_found_in_trash' => __( 'Nothing found in Trash', 'a13_thirteen_cpt' ),
    'parent_item_colon' => ''
    );

    ....

    $genre_labels = array(
    'name' => __( 'Album Categories', 'a13_thirteen_cpt' ),
    'singular_name' => __( 'Album Category', 'a13_thirteen_cpt' ),
    'search_items' => __( 'Search Album Categories', 'a13_thirteen_cpt' ),
    'popular_items' => __( 'Popular Album Categories', 'a13_thirteen_cpt' ),
    'all_items' => __( 'All Album Categories', 'a13_thirteen_cpt' ),
    'parent_item' => __( 'Parent Album Category', 'a13_thirteen_cpt' ),
    'parent_item_colon' => __( 'Parent Album Category:', 'a13_thirteen_cpt' ),
    'edit_item' => __( 'Edit Album Category', 'a13_thirteen_cpt' ),
    'update_item' => __( 'Update Album Category', 'a13_thirteen_cpt' ),
    'add_new_item' => __( 'Add New Album Category', 'a13_thirteen_cpt' ),
    'new_item_name' => __( 'New Album Category Name', 'a13_thirteen_cpt' ),
    'menu_name' => __( 'Categories', 'a13_thirteen_cpt' ),
    'separate_items_with_commas' => __( 'Separate items with commas', 'a13_thirteen_cpt' ),
    'add_or_remove_items' => __( 'Add or remove items', 'a13_thirteen_cpt' ),
    'choose_from_most_used' => __( 'Choose from the most used items', 'a13_thirteen_cpt' ),
    'not_found' => __( 'Not Found', 'a13_thirteen_cpt' ),
    );
    So you can change any occurrence of "Album".
    art40 said: can I change the .com/albums/... to another name as well?
    Yes, http://apollo13.eu/docs/thirteen/#!/single_album_slug

    With kind regards.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion