This is possible but requires changes to the code. It is something that I have intended to make easily available via the LDM/admin pages at some stage, but never quite finished.
Basically, you do the following:
- create a new template within your vbulletin/admincp, for example called links_mylinkbit
- edit includes/local_links_admininclude.php
- find a group of lines (around line 550) which look like this:
PHP Code:
require_admin_row($seq++, 'links_linkbit', serialize(array("name"=>"Modern", "collapse"=>"links_linkbit_short", "defcol"=>1, "maxcol"=>1, "altbit"=>0)), 'define_linkbit', 1);
- add a new line with slightly changed values, e.g.
PHP Code:
require_admin_row($seq++, 'links_mylinkbit', serialize(array("name"=>"My Linkbit", "collapse"=>"links_linkbit_short", "defcol"=>1, "maxcol"=>1, "altbit"=>0)), 'define_linkbit', 1);
- if you take a look at the comments in the code, you can probably work out what the other parameters do.
- re-install the LDM product installer.
- the new template will then be available in the same way as other LDM linkbits
OK?