Closed (fixed)
Project:
Frequently Asked Questions
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
23 Aug 2008 at 23:27 UTC
Updated:
2 Feb 2009 at 13:20 UTC
Jump to comment: Most recent file
Comments
Comment #1
emancipator commentedComment #2
stella commentedI need to think about how this could be implemented, before I decide whether or not to do it. However, this is not a critical issue. It may be critical for your project, but it isn't for the faq module as a whole, so marking back to normal. I'm at drupalcon in Szeged this week so I won't have a chance to look at this feature request until next week at the earliest.
Cheers,
Stella
Comment #3
emancipator commentedThanks for your reply!
I just thought it would be a nice feature to have but it looks like a lot of coding will be involved...
Comment #4
stella commentedMarking this as postponed as it's not going to make it into the next official release. Will re-open then.
Cheers,
Stella
Comment #5
amariotti commentedI would also be interested in this for 5.x branch if possible. Not sure if the 5.x branch is still getting features added to it or not.
Comment #6
stella commentedMarked #297914: allow uncategorized display even when FAQ Categories exist as a duplicate of this issue.
Comment #7
alexanderpas commentedComment #8
stella commentedIn the meantime, you might be able to achieve a similar effect using the views module.
Comment #9
amariotti commentedGood point. I will try that out. Thanks!
Comment #10
emancipator commentedAny other ideas? using view doesn't do it quite the same way...like how it has a nice drop down
Comment #11
amariotti commentedNope, views won't do it. But go to the linked issue above to see the solution that's already built into the module.
Comment #12
lisset commentedThis is exactly what I was hoping this module would do. I have various mini-sites for different departments that would use different FAQs. I definitely echo emancipator's need and request. Thanks!
Comment #13
alexanderpas commentedplease, do not edit the title of the issue unneeded.
Comment #14
dleong commentedHi there,
I would just like to also add my request for this feature to be implemented. In addition to multiple FAQ pages I would also ask if there is any way to restrict which categories or individual FAQ nodes a user sees/has access to based on user permissions or roles. For example, there are FAQs numbered 1 - 10. User A is allowed to see FAQ 1-5 but not 6-10, while User B is allowed to see FAQ 6-10 but not 1-5. I'd be satisfied with using subcategories for the different FAQs so long as users could be restricted to certain subcategories. Can this be accomplished by the existing FAQ module?
Thanks.
Comment #15
stella commentedThe restricted access issue can probably be achieved using the "taxonomy access control lite" module: http://drupal.org/project/tac_lite Though you may need the latest dev release for integration with this module to work correctly.
Comment #16
dleong commentedSounds promising - many thanks for the suggestion!
Comment #17
dccircuit commentedI would also like to see this feature implemented. Multiple FAQs on the same site. Subscribing.
Comment #18
obrigado commentedSubscribing, this is exactly the functionality I need.
Comment #19
alexanderpas commentedComment #20
sorahn commentedsubscribing
Comment #21
stella commentedTry the attached patch, or the most recent dev version (available later today).
Like before, you can call the
faq_page()function to embed FAQs in a normal node. For exampleprint faq_page(0);would display all faqs for all terms, whereasprint faq_page(1);would just display faqs associated with the term which had an id of 1. This requires the php filter input option by the way.There are now two extra parameters to the faq_page() function:
faq_page($tid, $question_display, $category_display);. These params override the default question and category layouts.For example, to create a faq listing for term 1 which has the "questions inline" layout, with default categorization call:
print faq_page(1, "questions_inline");To do the same, with "categories inline" layout, call:
print faq_page(1, "questions_inline", "categories_inline");The list of possible question layouts is:
The list of possible category layouts is:
Cheers,
Stella
Comment #22
stella commentedReleased in 6.x-1.8.
Comment #23
JonoB commentedHi Stella,
Thanks, as always, for the hard work.
I've got the multiple FAQ methodology working for the most part, but it seems that I cant get the actual category names to show up when embedding a FAQ category in another node.
For example, I'm using:
This shows each category's questions correctly (with the answer hidden), but there is no actual category name shown. The categories are separated correctly though, and I can see that its grouping the correct questions together.
Comment #24
stella commented@JonoB: Can you open a separate support request? Perhaps include a screenshot, and also check your FAQ category settings.