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)
This has been working on my forum for some time now, but the mod options do not appear in the moderation sidebar in the modcp. Is there anything I can check/add to make this happen?
ok, it works quite well so far (as far as i don't put illegal characters like # or @ or similar in the glossary terms), but it's not showing crosslinking in vba... did anyone solve this?
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.
how did you put letterbits in the main glossary page?
how did you put letterbits in the main glossary page?
look in glossary.php, you'll see that after the comment
// Start listing all glossary terms in selected category. (Edit by: Lucas)
there is an 'if' in line 200
Code:
if ($_REQUEST['do'] == 'listglossary')
{
if you cut that part, and paste it in line 251, right before
Code:
$glossarycount = $db->query_first("
the whole code contained between lines 203 and 246 will execute no matter what parameters are you sending to glossary.php. And since that portion of code is the letterbit, well, there ya go.