Not signed in (Sign In)

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

    • CommentAuthorlou
    • CommentTimeApr 28th 2006
     
    I have searched this forum and cant find any answers for this but I would like to remove the slideshow and sort by option, also when I click on the big image there is a broken link, Im not sure why this is happening.

    any help would be great
    thanks
    • CommentAuthorkoolze
    • CommentTimeJul 31st 2008
     
    hey pimphop.

    i am trying to do exactly what lou is doing.....but can u please tell me which file i need to make the above changes to, im kinda new at css as i cant seem to find the file that contains the coding u mentioned above.

    Thanks.
    •  
      CommentAuthorkimparsell
    • CommentTimeJul 31st 2008
     
    Hi koolze -

    Depending on what theme you are using, you need to look for the following code:

    <td>'.plogger_slideshow_link().'</td>
    <td>'.plogger_pagination_control().'</td>
    <td id="sortby-container">'.plogger_sort_control().'</td>
    <td id="rss-tag-container">'.plogger_rss_feed_button().'</td>

    The above code is from footer.php in the default theme (themes/default).

    In order to remove the slideshow link, delete '.plogger_slideshow_link().'.

    To delete the sort dropdown menus, delete '.plogger_sort_control().'.

    Hope this helps!
    • CommentAuthorkoolze
    • CommentTimeAug 1st 2008
     
    ive just tried doin wat u suggested...but it didnt seem to work.

    wat else could i do?
    thanks.
    •  
      CommentAuthorkimparsell
    • CommentTimeAug 1st 2008
     
    koolze -

    Which theme you are using? Can you provide a link to your gallery?
    • CommentAuthorkoolze
    • CommentTimeAug 4th 2008
     
    im using the default theme....
    the link is : http://www.elationevents.com.au/photos.php
    •  
      CommentAuthorkimparsell
    • CommentTimeAug 4th 2008
     
    Open the file footer.php that is in your theme, and post the contents here please.
    • CommentAuthorkoolze
    • CommentTimeAug 21st 2008
     
    hi kimparsell....sorri for the late reply...been really busy lately....your help is very much appreciated.

    <?php





    print '</div>';



    print ' <div id="pagination">

    <table style="width: 100%;">

    <tr><td>'.plogger_slideshow_link().'</td>

    <td>'.plogger_pagination_control().'</td>

    <td id="sortby-container">'.plogger_sort_control().'</td>

    <td id="rss-tag-container">'.plogger_rss_feed_button().'</td>

    </tr>

    </table>

    </div>';



    print plogger_link_back();

    print '</div>';

    print plogger_download_selected_form_end();

    ?>
    •  
      CommentAuthorkimparsell
    • CommentTimeAug 21st 2008
     
    To remove the slideshow link, open footer.php from your theme in a plain text editor (like Notepad) and change this line of code:


    <tr><td>'.plogger_slideshow_link().'</td>

    To this:


    <tr><td></td>

    Then, to remove the sortby menu, change this line of code:


    <td id="sortby-container">'.plogger_sort_control().'</td>

    To this:


    <td id="sortby-container"></td>

    Save the file and upload it to your server, making sure to overwrite the one that is already there.

    Hope this helps! :)
    • CommentAuthorkoolze
    • CommentTimeAug 26th 2008
     
    thanks heaps! very much appreciated.

    hmm my pagination have seemed to disappear. How do i bring it back>?
    •  
      CommentAuthorkimparsell
    • CommentTimeAug 26th 2008
     
    This section of your footer.php file should read as follows:

    print ' <div id="pagination">

    <table style="width: 100%;">

    <tr><td></td>

    <td>'.plogger_pagination_control().'</td>

    <td id="sortby-container"></td>

    <td id="rss-tag-container">'.plogger_rss_feed_button().'</td>

    </tr>

    </table>

    </div>';


    '.plogger_pagination_control().' provides the pagination menu. Did you also remove that when you removed the other 2 items?