| Author |
Message |
Shane Member
|
Posted: 10 Jan 2006 04:55:44
I don't want users to be able to add categories. Is there a way to turn that off?
Thanks,
Shane
|
BEN Member
|
Posted: 10 Jan 2006 05:21:54
It just suggests categories from users.............which you then approve or delete in admin.
Surley its a good thing for user interaction? Maybe someone with think of something you havnt!!
|
skalinks Admin
|
Posted: 10 Jan 2006 22:19:56
Hello Shane and BEN.
BEN is right, when visitor submit a category to your directory, this category does display on your directory, only after approving by you, all categories and links which came for approve, you can browse on "Control Panel" page.
Thank you!
|
Shane Member
|
Posted: 16 Jan 2006 05:41:56
I found the reference in the templates and just deleted it there. I'm sure there will be instances of people requesting categories but at this time I would rather not have it as a form option on the site.
Shane
|
skalinks Admin
|
Posted: 16 Jan 2006 05:46:16
Hi Shane
Ok, no problem , you can modify templates as you wish.
Thank's
|
Anonymous
|
Posted: 21 Jan 2006 11:05:32
Hi,
May I know excatly what I have to remove in templates for not appear Add category?
thankyou
silviu
|
skalinks Admin
|
Posted: 23 Jan 2006 05:39:51
Hi all!
I think, that it is nesessary to make the possobility to add links and cats for visitors as option. If it is, well, no problem, we will include it in our new version.
Also, if you want to remove "Add Cat" link, open header.tpl file in templates folder, find this code
{else}
<div id="navigation_center">
<a class="menu_nav" href="{$_skalinks_url.dir}add_cat.php?cat={$_output.cat_info.ID}">{$_s kalinks_lang.header_links.add_cat_link}</a> |
<a class="menu_nav" href="{$_skalinks_url.dir}add_url.php?cat={$_output.cat_info.ID}">{$_s kalinks_lang.header_links.add_url_link}</a> |
<a class="menu_nav" href="{$_skalinks_url.dir}search.php">{$_skalinks_lang.header_links.fi nd_url}</a>
{if $_output.show_dirtree}
| <a class="menu_nav" href="{$_skalinks_url.dir}dirtree.php">{$_skalinks_lang.header_links.d ir_tree}</a>
{/if}
{/if}
and replace it with
{else}
<div id="navigation_center">
<a class="menu_nav" href="{$_skalinks_url.dir}add_url.php?cat={$_output.cat_info.ID}">{$_s kalinks_lang.header_links.add_url_link}</a> |
<a class="menu_nav" href="{$_skalinks_url.dir}search.php">{$_skalinks_lang.header_links.fi nd_url}</a>
{if $_output.show_dirtree}
| <a class="menu_nav" href="{$_skalinks_url.dir}dirtree.php">{$_skalinks_lang.header_links.d ir_tree}</a>
{/if}
{/if}
Thank's all!
|