• DevExtensibility
  • Remove the link to the user profile from the main discussions page

Hi,

I need to remove the link to the user profile from the main discussions page. The reason is that I'm using the "FriendsOfFlarum Discussion Thumbnail" extension which replaces the user's avatar with the discussion's image but it still goes to the user profile page when the main discussion image is clicked.

I tried to write an extension and set the HREF value to # using jQuery, but it didn't work. It seems that some other JS is overriding my JS.

Any idea?

Thanks

  • clarkwinkelmann replied to this.
  • ikramy you could use a CSS solution to make the link unclickable:

    .DiscussionListItem-author {
      pointer-events: none;
    }

    This will also prevent the tooltip from appearing on hover, which might actually be something you want as well.

    ikramy you could use a CSS solution to make the link unclickable:

    .DiscussionListItem-author {
      pointer-events: none;
    }

    This will also prevent the tooltip from appearing on hover, which might actually be something you want as well.