Page 1 of 1

inserting image from custom field to popular entries plugin

Posted: Mon Apr 06, 2009 5:00 pm
by lordcoffee
Hi!

I want to insert an imagelink from my custom properties field into the popular entries output.

on line 276 of the plugins serendipity_plugin_popularentries.php i have

Code: Select all

echo '<li><a href="' . $entryLink . '" title="' . htmlspecialchars($entry['title']) . '">' . $entry['title'] . '</a>';
What I have to input is

Code: Select all

<img src="{$entry.properties.ep_firstpreview}">
But I don't know how to input this to get it working. Anybody knows a solution? ;-)

Thanks, lordcoffee

Re: inserting image from custom field to popular entries plugin

Posted: Mon Apr 06, 2009 7:25 pm
by garvinhicking
Hi!

The popularentries plugin does not fetch all entry related data. You cannot access entryproperties at that place, you would need to change the PHP coding of the plugin to include a JOIN on the entryproperties table...

Regards,
Garvin