Not signed in (Sign In)

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

    • CommentAuthorWUP
    • CommentTimeJul 13th 2008
     
    I have a bit of a problem with the rss feed that I'm hoping someone will help with.

    I have Plogger installed inside a template on my website here http://www.wup.me.uk/wupgallery.php. It's working fine and the rss feed for the two albums I have at present are feeding as expected. However, the images within the feed are linked to (for example),

    http://www.wup.me.uk/plogger/?level=picture&id=22

    I'd like them to link back to the correct page within my website, i.e.

    http://www.wup.me.uk/wupgallery?level=picture&id=22

    I've had a look at the plog-rss.php and tried to follow it through to plog-functions.php but I've lost track.

    Can someone tell me what to edit, please?

    Thanks.

    WUP
    • CommentAuthorWUP
    • CommentTimeJul 21st 2008
     
    Anyone?
    •  
      CommentAuthorsidtheduck
    • CommentTimeJul 21st 2008
     
    WUP,

    Open plog-rss.php and look for the following code:
    $pagelink = plogger_get_picture_url();
    and edit it to read:
    $pagelink = "http://www.wup.me.uk/wupgallery.php?level=picture&id=" . plogger_get_picture_id();
    That should work for you.
    • CommentAuthorWUP
    • CommentTimeJul 22nd 2008
     
    Of course - I was trying to overcomplicate it. Many thanks.