inserting image from custom field to popular entries plugin

Creating and modifying plugins.
Post Reply
lordcoffee
Regular
Posts: 308
Joined: Tue Nov 29, 2005 10:22 pm
Location: Munich - Germany
Contact:

inserting image from custom field to popular entries plugin

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: inserting image from custom field to popular entries plugin

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply