Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter vincent87

    (@vincent87)

    someone please help me?

    Thread Starter vincent87

    (@vincent87)

    Fix it. If you using U can post and another user can change your nextgen gallery title and description.

    Open Nextgen Plugin in root folder > Admin > media-upload.php

    Find:

    function ngg_wp_upload_tabs ($tabs) {
    
    	$newtab = array('nextgen' => __('NextGEN Gallery','nggallery'));
    
        return array_merge($tabs,$newtab);
    }

    Replace With :

    function ngg_wp_upload_tabs ($tabs) {
    
    	$newtab = array('' => __(''));
    
        return array_merge($tabs,$newtab);
    }

    Or with this :
    function ngg_wp_upload_tabs ($tabs) {

    $newtab = array(‘library’ => __(‘Media Library’));

    return array_merge($tabs,$newtab);
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: NextGEN Gallery] Help – Remove Nextgen from Upload Tab wordpress’ is closed to new replies.