I have been trying to get this great module to work for hours, as it would fit exactly what I am trying to do.

In essence, the view will only output the "Similar By Terms: Similarity" field.

If I run Test Preview in Views with only the Similar By Terms: Similarity field, I get

Similarity: 700%

based on the query:

SELECT COUNT(node.nid) AS node_count
FROM node node
LEFT JOIN term_node term_node ON node.vid = term_node.vid
WHERE (node.status = 1) AND (term_node.tid IN (27, 32)) AND (node.nid != 124)
ORDER BY node_count DESC

If I run Test Preview in Views with the Similar By Terms: Similarity field and the Node: Title field (or any other field), I get as output:

no output at all

based on the query:

SELECT node.title AS node_title,
node.nid AS nid,
node.language AS node_language,
COUNT(node.nid) AS node_count
FROM node node
LEFT JOIN term_node term_node ON node.vid = term_node.vid
WHERE (node.status = 1) AND (term_node.tid IN (27, 32)) AND (node.nid != 124)
ORDER BY node_count DESC

Am I getting something wrong in the configuration?

I am running Views 6.x-3.0-alpha4.

Comments

rmcom’s picture

Issue summary: View changes

typos

rmcom’s picture

Issue summary: View changes

update

takim’s picture

Issue summary: View changes
Status: Active » Closed (works as designed)