I just installed the module, and checked my permissions but the links aren't showing on blog nodes.

I checked permissions and settings.

Any ideas?

Comments

yuriy.babenko’s picture

I've been trying to figure out the same problem for the last hour.
I have set it to show on all node types, but it doesn't show up for blog nodes :/

yuriy.babenko’s picture

OK, found the problem.

service_links.module, change line 296 from:

if (user_access('use service links') && arg(0) == 'node' && is_numeric(arg(1))) {

to:

if (user_access('use service links')) {

Hopefully this fix doesn't break the internets. ;)
Works for me...

yuriy.babenko’s picture

Just had a chance to go through my site in more detail...

The above "fix" causes problems on other pages. The service_links module only displays when you're viewing an individual node on the page, not when you're viewing several teasers. Using my change from above causes it to try to display on all pages, but when it can't find the particular node to load, warnings start popping up...

It seems to be working on individual blog nodes now. (Original code)

TheCrow’s picture

Status: Active » Closed (works as designed)