great module. one quick question. is it possible to show the nodes alphabetically rather than when it was last modified?

thanks

guppy

Comments

stborchert’s picture

Hi.
Unfortunately it isn't possible without modifying the module (yet).
Open the file "linktocontent_node.module" (directory "contrib/linktocontent_node") and modify line 236 ($order):

function _linktocontent_node_query_nodes($tid) {
  $order = 'n.sticky DESC, n.created DESC';
  $descendant_tids = array();

to

function _linktocontent_node_query_nodes($tid) {
  $order = 'n.title ASC';
  $descendant_tids = array();

Hope, this helps (next version will be sortable by config ;-) ).

greetings,

Stefan

stborchert’s picture

Version: 5.x-1.7 » 5.x-2.x-dev
Category: support » task

moved task to new development version

stborchert’s picture

Assigned: guppydrupal » stborchert

update assignment