Hi, could you please examine the following issue tracked at Views:
Node Relationships (with its backrefs feature) is only one module one could combined with the "trick" described there, so it is reported at Views.
I need to be able to have 2 Page displays within my (cloned and adapted) noderelationships_backref view to exploit the nice Views trick, however the path of each Page display seems to be readonly (and greyed out in the Views UI).
Grateful for tips.
Comments
Comment #1
webel commentedI've found where Node Relationships is overriding the view Page display paths.
From noderelationships.inc:
Comment #2
webel commentedAs far as I can tell, Node Relationships backref facility is always going to call the default view display anyway, not an access-specific Page (no matter what path).
From noderelationships.pages.inc:
Comment #3
webel commentedI would like to be able to force the node relationships backref views to call on a specific Page display path (which is shared by multiple Page displays with different access level, and showing different fields per role).
[Note that this is not even the same as selecting a specific a Page display option, Views will switch between Page displays according to access role, for a given shared path, not by display id, as described by merlinofchaos: http://drupal.org/node/755956#comment-2791922 ]
Comment #4
markus_petrux commentedI think you need to override the dynamic customizations made by Node Relationships module to the view. You can do it using a noderelationships hook. See this: #589136: How to customize noderelationships views in real-time, when these views are executed
Comment #5
webel commented@markus_petrux Thanks for tip, will try out and report back result here.