Not signed in (Sign In)

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

    • CommentAuthoralfonce
    • CommentTimeJun 21st 2008
     
    Hi there I had a heavily modified version of Ploger 2 and have upgraded to 3 but cant work a few things out any help appreciated.

    1. How can I remove the rss totally? See here

    http://www.ebro-catfishing.com/gallery/

    2. How can I align the sort by elemnts to the right on all pages. See link

    http://www.ebro-catfishing.com/gallery/?level=album&id=10

    3. Previoualy I had the names of the images and how many comments had been left - this has been lost - can I het it back? See link

    http://www.ebro-catfishing.com/gallery/?level=album&id=10

    4. Oddly when I mouse over an image a number appears in the top left corner - what is this and how can I stop if. See link

    http://www.ebro-catfishing.com/gallery/?level=album&id=10

    5. The next button no longer right aligns - how can I make it so? See link

    http://www.ebro-catfishing.com/gallery/?level=picture&id=274

    Thanks in advance.
    Alex.
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 21st 2008
     
    Alex -
    Here's the solution to your first issue. I'm working on the answers to your other issues, and will post them as I get the solutions worked up, okay?
    Kim

    1. How can I remove the rss totally? See here: http://www.ebro-catfishing.com/gallery/

    Open up plog-functions.php and find the following code around line 431:
    // Embed URL to RSS feed for proper level.
    print '<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="'.plogger_rss_link().'" />' . "\n";

    Change it to:
    // Embed URL to RSS feed for proper level.
    //print '<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="'.plogger_rss_link().'" />' . "\n";

    That will remove the rss feed from your gallery. You will need to open up footer.php in the theme you are using and remove the code between the td tags to remove the RSS image at the bottom right.
    Change this:
    <td id="rss-tag-container">'.plogger_rss_feed_button().'</td>
    To this:
    <td id="rss-tag-container">&nbsp;</td>
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 21st 2008
     
    4. Oddly when I mouse over an image a number appears in the top left corner - what is this and how can I stop if. See link: http://www.ebro-catfishing.com/gallery/?level=album&id=10

    The box with the number in it you see on mouseover of a thumbnail is an overlay with the number of comments that image has. If you don't wish to have that, open your theme's stylesheet and look for #overlay:

    #overlay {
    position: absolute;
    visibility: hidden;
    background-color: #38c;
    font-family: "Georgia", "Verdana", serif;
    font-weight: bold;
    font-size: 14px;
    padding: 4px;
    text-align: center;
    width: 18px;
    color: #fff;
    }


    Change it to:
    #overlay {
    display: none;
    }
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 21st 2008 edited
     
    Issues 2 and 5 - what browser are you using? I've checked it using FF 2.0.0.14, IE6, and Opera 9.5 and all of those elements align to the right for me.
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 21st 2008
     
    3. Previously I had the names of the images and how many comments had been left - this has been lost - can I get it back? See link:
    http://www.ebro-catfishing.com/gallery/?level=album&id=10

    Open album.php in the theme you are using, and insert the code below right after the following code (around line 18):
    print '<li class="thumbnail"><div class="tag"><a href="' . plogger_get_picture_url() . '">' . $imgtag . "</a><br />";
    Insert this:
    print '<div class="meta-header">'.<?php echo plogger_get_picture_caption() ?>.'<br />('.<?php echo plogger_picture_comment_count() ?>.' comments)</div>';