Dynamic FAQS for your vanilla forums.
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:
There was an error rendering this rich post.
Tagged:
0
Comments
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/'); } } }
Vanilla Wiki, Tastes Great! 31,000 viewers can't be wrong. || Plugin Development Explained