It would be nice if one shows the node in full view, that it is possible to remove the link from the title and maybe change the to another . When using the full node view it will most often be a part of another node which needs to show clearly.

Comments

Danny Englander’s picture

Version: 7.x-1.0-rc5 » 7.x-1.0-beta2

I know this is old but I ran into the same issue. For now I using this hackish bit of JQuery in my external scripts file. You can then set the cursor to something other than pointer with CSS.

(function ($) {
    //add drupal 7 code
    Drupal.behaviors.preventClickClass = {
        attach: function(context, settings) {
//end drupal calls

$('article.node-reference h2').click(function(e) {
                e.preventDefault();
                //do other stuff when a click happens
  });

 }}})
    (jQuery);
lsolesen’s picture

Version: 7.x-1.0-beta2 » 7.x-1.0-rc5
Honza Pobořil’s picture

Version: 7.x-1.0-beta2 » 7.x-1.x-dev
Issue summary: View changes

Or to have option to hide title, so we could use formatters to show it how we want.