Firstly, thank you for bringing such a great module - it does exact what I have dreamed for quite a long time! Also, cool module name :-)
I installed it but got an warning when adding the callouts block to a region:
user warning: Unknown column 'n.nid' in 'field list' query: SELECT DISTINCT(n.nid) FROM callout in /home/acbynet/public_html/sites/all/modules/callouts/callouts.module on line 190.
My Drupal is the latest 6.11, two taxonomies, with og and some other modules installed (too many to list but I will provide a full list if you think it helpful).
Any tips on troubleshooting it? Thank you!
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | callouts-461276-1.patch | 616 bytes | mikemiles86 |
Comments
Comment #1
mikemiles86Thanks for the heads up, I found what the issue was. The attached patch should fix it, and the fix will also be included in the next release.
(If your not sure how to perform a patch see: http://drupal.org/patch/apply )
and if your still confused (Like I was), then you can manually make the fix by opening the callouts.module file in a text editor and change line 190 from
$blocks = db_query(db_rewrite_sql($blocks));
to
$blocks = db_query($blocks);
Comment #2
askit commentedIt works. Now the call out block shows on the page, without any error. Wonderful! Thank you so much!!