Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorhugatree
    • CommentTimeMar 1st 2010 edited
     
    I want to remove the box and all the image details that is under the pictures and under the line View Image Details. Any ideas? Thanks in advance.
    •  
      CommentAuthorkimparsell
    • CommentTimeMar 1st 2010
     
    hugatree: To remove the View Image Details link and the box that shows when the link is clicked, open default/picture.php and look for lines 29-32:

    <p id="exif-toggle"><?php echo plogger_get_detail_link(); ?></p>
    <div id="exif-data-container">
    <?php echo generate_exif_table(plogger_get_picture_id()); ?>
    </div><!-- /exif-data-container -->

    Change them to read as follows:

    <p id="exif-toggle"><?php //echo plogger_get_detail_link(); ?></p>
    <div id="exif-data-container">
    <?php //echo generate_exif_table(plogger_get_picture_id()); ?>
    </div><!-- /exif-data-container -->

    That will comment out the PHP function calls so that neither the link nor the box will show.