HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Dynamic FAQS for your vanilla forums.

422422 Developer MVP
edited December 2011 in Feedback

Uses jQuery and some very slick inline search functionality.

Download it here

Please Note this is NOT A PLUGIN !!!

Download it, and ignore the default.php file ( do not upload that )

Follow the tutorial on our support site : here

This is a great little script, and you will really enjoy using it !!

Dependencies : requires Custom Pages plugin.

Preview:
image

There was an error rendering this rich post.

Comments

  • hbfhbf wiki guy? MVP
    edited December 2011

    you'r probably fully aware of this already, but you can use a very simple plugin code to add the FAQS link to the menu bar. same plugin could take care of the routes as well. here is an example of a plugin i use to add a link to my e-store. the benifit of the plugin is that you can switch themes without having to modify the code each time.

    <?php if (!defined('APPLICATION')) exit(); /** * 'marketplace' plugin for Vanilla Forums. * */

    $PluginInfo['Marketplace'] = array( 'Name' => 'MarketPlace', 'Description' => 'Adds the Marketplace link to ribbon', 'Version' => '0.1', 'Author' => "J. Baughman", 'AuthorEmail' => '', 'AuthorUrl' => '', 'License' => 'none', 'MobileFriendly' => TRUE );

    /** * Adds marketplace link to menu * * @package marketPlace */

    class MarketPlace extends Gdn_Plugin { /** * Adds "Marketplace" to main menu. * * @since 1.0 * @access public */ public function Base_Render_Before($Sender) { // Add "Marketplace" to menu $Session = Gdn::Session(); if ($Sender->Menu && $Session->IsValid()) { // Comment out this next line if you want to put the link somewhere else manually $Sender->Menu->AddLink('Marketplace', T('Marketplace'), '/store/'); } } }

Sign In or Register to comment.