How do I get rid of entire "File description" & "Keywords" options for uploads? How do I get rid of entire "File description" & "Keywords" options for uploads?
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

How do I get rid of entire "File description" & "Keywords" options for uploads?

Started by fuzz, February 09, 2006, 10:46:58 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

fuzz

Those two are not needed for the gallery's intended purpose & will just cause headaches with users.  Is there anyway to delete them?

Stramm

in upload.php find
        array($captionLabel, 'caption', 3, $CONFIG['max_img_desc_length']),
        array($lang_upload_php['keywords'], 'keywords', 0, 255, 1),

and
    array($captionLabel, 'caption', 3, $CONFIG['max_img_desc_length'], (isset($iptc['Caption'])) ? $iptc['Caption'] : ''),
    array($lang_upload_php['keywords'], 'keywords', 0, 255, 1,(isset($iptc['Keywords'])) ? implode(' ',$iptc['Keywords']): ''),



comment it out