Request some hacks ... plz??

Easy Access

ezaccessnt0.jpg
ezaccess2rj9.jpg


This is an admin control panel navigation menu that allows you to have easy access to many functions in your ACP, many of which normally require many clicks to get to the proper option menu.

For instance, I always found it somewhat annoying that, in order to edit a template, I had to click on "Styles & Templates," then "Style Manager," then choose "Edit Templates" and then click on the "<<>>" button to expand all of the templates. With this ACP navigation menu all you have to do is click on "edit Templates" to get to the same menu.

This comes in two versions, which are both included in the .zip file: one for regular vb users, and another for people that have TMS (Template Modification System) installed. Upload whichever one you want to use. In the pictures above, the one on the left is the TMS version, and the one on the right is the regular (non-TMS) version.

All permissions are set according to vb standards. In the TMS version, canadminstyles is the permission for the TMS settings.

This should work in all 3.6.X vb versions.

Installation:

Choose which version you wish to upload, and upload the contents of the "upload" folder to your forum directory via ftp. Then login to your Admin Control panel and look in the navigation menu for a new navigation option called "Easy Access." No file edits or products to upload - just upload one file.

NOTE: The cpnav_easyaccess.xml file should go to:
forum/includes/xml/cpnav_easyaccess.xml

enjoy!
 
This is my little Add-On to add a threadpreview to the forumdisplay and the searchresults.
It doen't add any extraqueries, because the text comes direct from the "title-tag".
Result: on mouseover a "popup" opens with the text

A live preview can be seen here: Portal - developer-network

Screenshot:

View attachment 70851
Updates/Changelog:
10.10.2007 Version 1.1:
  • Released and added the preview to the searchresults


Installation:

Upload the files.
If you have installed tms just install the add-on
Else: install the add-on and add to forumdisplay and search_results template before $footer this part:
Code:
<script type="text/javascript" src="clientscript/yui/yahoo.js"></script>
<script type="text/javascript" src="clientscript/yui/event-min.js" ></script>
<script type="text/javascript" src="clientscript/yui/dom-min.js" ></script>
<script type="text/javascript" src="clientscript/yui/container-min.js"></script>
<link type="text/css" rel="stylesheet" href="clientscript/yui/containerdev.css">
<script type="text/javascript" src="clientscript/ragtek_forumdisplay.js"></script>

for setting up the style:
open the container.css, search for:
Code:
.yui-tt {
	visibility:hidden;
	position:absolute;
	color:#FFFFCC;
	background-color:#222222;
	font-family:arial,helvetica,verdana,sans-serif;
	padding:2px;
	border:1px solid #FCC90D;
	font:100% sans-serif;
	width:400px;
}
and edit this part:
Code:
color:#FFFFCC;background-color:#222222;border:1px solid #FCC90D;
 
Back
Top