Version: 1.2.1, by SS9267547
Developer Last Online: Jun 2009
Category: Major Additions -
Version: 3.6.4
Rating:
Released: 11-26-2006
Last Update: 01-14-2007
Installs: 130
DB Changes Uses Plugins Template Edits
Additional Files
No support by the author.
Development of this mod is on hold due to lack of time and development of Mindestic Gaming CMS Lite. No support will be given at this time.
Mindestic GlosPro Description
Mindestic GlosPro is an advanced yet simple to use system to create a glossary of terms for your website along side with vBulletin 3.6.X series. Loaded with features, Mindestic GlosPro is a great tool for any sized website!
Mindestic GlosPro Information
Current Version Number: 1.2.2
vBulletin Test Version(s): 3.6.4
Queries to run: 5
File Edits: 0
New Files: 12
New Phrases: 225
New Templates: 21
New Plugins: 10
Template Edits: 4
Last Edited: January 14, 2007
Edited By: Lucas Pawelczyk
Install Time: 2 minutes
Difficulty: Easy
Current Planned Features For Version 1.2.3
Add import/export system. (50% Complete)
Fix additional problems with crosslinking feature. (0% Complete)
Can some tell me how I can only allow certain groups to turn on/off the glassary from the usercp? Currently all usergroups have this option, I want to only allow certain groups to have this option in usercp, any help with this please?
There is no settings for that but it can be done by editing the templates as well the main glossary.php file, so it depends on howw badly you want it lol.
Well I'm getting to know the code, I've already modified the code to make glossary.php without args to act as if it had received a do=listglossary&c=1 by editing the "default action":
if (empty($_REQUEST['do']))
{
$_REQUEST['do'] = 'listglossary';
$_REQUEST['c'] = '1';
}
Then I also inserted a "show all" link at the beggining of the letterbit, but it was a minor edit, I just added:
But this one I cannot accomplish. I edited the main Glossary template and in the section where the letterbit table is displayed I removed the "if" so it should display letterbit no matter what, and yet it doesn't happen.
I hope you don't mind I'm performing this little customization, I believe it's impossible to make a product to suit each and every webmaster out there LMAO.
EDIT: I did it! I hadn't noticed that in glossary.php the letterbit eval part is inside an if statement restricting it to show only if do = listglossary, so I took that whole part outside the 'if'. I had to set c = 1 because it is initially = 0 and takes me to a blank page.
No thats fine Amenadiel. I'm more then happy to see customization and happy to see people share what they did in the thread, who knows might add additional options for whatever has been added.
Here's an interesting item I just noticed with cross linking.
If I have the word Telephone in the glossary, and a user places the work telephone in a post, the post becomes capitalized.
<if condition="$vbulletin->userinfo['usergroupid'] == '5' OR $vbulletin->userinfo['usergroupid'] == '6' OR $vbulletin->userinfo['usergroupid'] == '7'">
Awe this worked thank you... Now one more question.. What happens if in the past few days that the option was showing up in the usercp a member disabled the crosslinking and now I have removed that usergroup from seeing the crosslinking option in the usercp what would happen? Does the feature remain on or off?