wordpress 3.0 twenty ten theme problem

Discussion in 'Blogging' started by aviana, Jun 24, 2010.

  1. #1
    I am using wordpress 3.0 and twenty ten (default theme)

    Well I want to remove [​IMG]

    from comment box

    suggest me

    thanks in advance
     
    aviana, Jun 24, 2010 IP
  2. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Going by this post on the Wordpress forums, you open functions.php and add this code to the bottom:
    
    function mytheme_init() {
    	add_filter('comment_form_defaults','mytheme_comments_form_defaults');
    }
    add_action('after_setup_theme','mytheme_init');
    
    function mytheme_comments_form_defaults($default) {
    	unset($default['comment_notes_after']);
    	return $default;
    }
    
    Code (markup):
     
    Cash Nebula, Jun 24, 2010 IP
  3. aviana

    aviana Member

    Messages:
    122
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #3
    Thanks its work for me...Thank u very much

    one more question how can i rename "home" from navigation link as it is difficult to find "home" in header.php
     
    aviana, Jun 24, 2010 IP
  4. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #4
    By creating a custom menu, which is really easy with the new Menu Editor. Basically, all you need to do is this:
    1. Login and go to Dashboard->Appearance->Menus.
    2. Create a custom menu and make some links for it.
    3. Drag and drop the links to change their order.
    4. Save the menu.

    So simple it's boring! :D
     
    Cash Nebula, Jun 25, 2010 IP
  5. m0nk3y

    m0nk3y Active Member

    Messages:
    237
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    60
    #5
    The new Wordpress 3.0 is great - the Menu Editor makes life hell of a lot easier without the need for having plug-ins to override the menu settings. You can change the 'Title' or any menu link using the menu editor. Great addition to the software!
     
    m0nk3y, Jun 25, 2010 IP
  6. aviana

    aviana Member

    Messages:
    122
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #6
    Yes Problem is solved ...Thanks to all mates! cheers~
     
    aviana, Jun 28, 2010 IP