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
links to services like Digg, Technorati, del.icio.us etc
-
Ralf Skirr
- Regular
- Posts: 30
- Joined: Fri Jan 26, 2007 4:42 pm
-
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
Hi!
Yes, you can edit the plugin_findmore.tpl and wrap a Smarty condition around it:
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:
HTH,
Garvin
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}
Of course you can revert the logic to make it the other way round:
Code: Select all
{if NOT $is_single_entry}
...
{/if}
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/
# 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
:)
Garvin,
thanks a lot.
Ralf
P.S. But it took me a while to check that logically the NOT had to be removed
Now it's working perfectly.
thanks a lot.
Ralf
P.S. But it took me a while to check that logically the NOT had to be removed