links to services like Digg, Technorati, del.icio.us etc

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
Ralf Skirr
Regular
Posts: 30
Joined: Fri Jan 26, 2007 4:42 pm

links to services like Digg, Technorati, del.icio.us etc

Post by Ralf Skirr »

Hi,

I'm using the plugin that 'shows links to services like Digg, Technorati, del.icio.us etc related to your entry'

Now these links appear under the shortened teasers at the front page as well as under the complete article on the individual articles page.

Is there a way to make these links only show up on the full article page and not below the teaser?

Thanks,
Ralf
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: links to services like Digg, Technorati, del.icio.us etc

Post by garvinhicking »

Hi!

Yes, you can edit the plugin_findmore.tpl and wrap a Smarty condition around it:

Code: Select all

{if NOT $entrydata.is_extended OR $is_single_entry}
...
{/if}
This will only show the bookmark section if an entry either has no extended text, or if you are currently viewing the detailed entry.

Of course you can revert the logic to make it the other way round:

Code: Select all

{if NOT $is_single_entry}
...
{/if}
HTH,
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/
Ralf Skirr
Regular
Posts: 30
Joined: Fri Jan 26, 2007 4:42 pm

:)

Post by Ralf Skirr »

Garvin,

thanks a lot.

:D
Ralf

P.S. But it took me a while to check that logically the NOT had to be removed :) Now it's working perfectly.
Post Reply