Hi

I'm trying to open the 'username' and 'user pictures' in a new window once thry are clicked for the COMMENTS submodule. Another option is to make them unclickable at all but I asume the first part is easier than the latter. Tried applying target _blank but am failing here, also tried stripping html tags except for Only local images are allowed.

to at least stop them from linking anywhere but the submit button dissappears. I'd rather open the links in new windows than strip the tags as stripping them causes other problems.

Could you kindly show me how to make these links open in a new window?

Thanks

Comments

icecreamyou’s picture

Component: Code - Functionality » Submodules
Status: Active » Fixed

This is not really an FBSS question but more of a theming question. You can override the theme_fbss_comments_item() function to change how status comments are displayed. Alternatively you can just add JS like this to the page:

$('.fbss-comments-author a').css('cursor', 'default').click(function() {
  return false;
});
jmonster’s picture

Thanks a lot Ice, appreciate it.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.