Author Topic: How to change a Category  (Read 883 times)

0 Members and 1 Guest are viewing this topic.

Offline kortafilmer

  • Newbie
  • *
  • Posts: 15
  • Karma: 0
    • View Profile
How to change a Category
« on: February 22, 2010, 03:40:57 PM »
How can i change a category on my website...

I want to have a "About us" page... can i edit "Images" ??

and where am I suppose to edit it? because i tried in the file index.php and i found the categories... but when i deleted one it would mess everything... so i think i need help on where and what i should change... (off course will I make the html code for the about us page) but i dont know where I should edit...

Hope someone can help me... And sorry for asking so much... we are kind of new :)

Thanks so much

Offline winracer

  • Development Team
  • Pro Member
  • *******
  • Posts: 446
  • Karma: 3
    • View Profile
    • helpmewithperl.com
  • Script Version: 1.0+
Re: How to change a Category
« Reply #1 on: February 22, 2010, 04:37:19 PM »
How can i change a category on my website...

I want to have a "About us" page... can i edit "Images" ??

and where am I suppose to edit it? because i tried in the file index.php and i found the categories... but when i deleted one it would mess everything... so i think i need help on where and what i should change... (off course will I make the html code for the about us page) but i dont know where I should edit...

Hope someone can help me... And sorry for asking so much... we are kind of new :)

Thanks so much

are you talking about adding new tab at the top that sdsays about us?
winracer
myfunnypets.com
helpmewithperl.com
coosavalleyclassifieds.com
brownlows.net
myphpforum.com

Offline kortafilmer

  • Newbie
  • *
  • Posts: 15
  • Karma: 0
    • View Profile
Re: How to change a Category
« Reply #2 on: February 22, 2010, 04:42:52 PM »
How can i change a category on my website...

I want to have a "About us" page... can i edit "Images" ??

and where am I suppose to edit it? because i tried in the file index.php and i found the categories... but when i deleted one it would mess everything... so i think i need help on where and what i should change... (off course will I make the html code for the about us page) but i dont know where I should edit...

Hope someone can help me... And sorry for asking so much... we are kind of new :)

Thanks so much

are you talking about adding new tab at the top that sdsays about us?

yes a new tab... or replace an already existed tab...

Offline winracer

  • Development Team
  • Pro Member
  • *******
  • Posts: 446
  • Karma: 3
    • View Profile
    • helpmewithperl.com
  • Script Version: 1.0+
Re: How to change a Category
« Reply #3 on: February 22, 2010, 06:19:21 PM »
the tab are in the /templates/default/header.tpl folder

look for
Code: [Select]
<!--Navigation UL Start-->
<ul>
<li><a {if $pagetype eq "home"}class="current"{/if} href='index.php' accesskey='h'><span class='key'>{$LAN_41|default:"Home"}</span></a></li>
<li><a {if $pagetype eq "feature"}class="current"{/if} href='index.php?pt=feature' accesskey='f'><span class='key'>{$LAN_2|default:"Featured"}</span></a></li>
<li><a {if $pagetype eq "all"}class="current"{/if} href='index.php?pt=all' accesskey='a'><span class='key'>{$LAN_3|default:"All"}</span></a></li>
<li><a {if $pagetype eq "categories"}class="current"{/if} href='categories.php?pt=categories' accesskey='c'><span class='key'>{$LAN_40|default:"Categories"}</span></a></li>
<li><a {if $pagetype eq "images"}class="current"{/if} href='images.php?pt=images' accesskey='i'><span class='key'>{$LAN_4|default:"Images"}</span></a></li>
<li><a {if $pagetype eq "videos"}class="current"{/if} href='videos.php?pt=videos' accesskey='r'><span class='key'>{$LAN_39|default:"Videos"}</span></a></li>
<li><a {if $pagetype eq "submit"}class="current"{/if} href='submit.php?pt=submit&amp;part=1' accesskey='s'><span class='key'>{$LAN_5|default:"Submit"}</span></a></li>
<li><a {if $pagetype eq "upload"}class="current"{/if} href='upload.php' accesskey='u'><span class='key'>{$LAN_135|default:"Upload"}</span></a></li>

</ul>
<!--Navigation UL End-->

winracer
myfunnypets.com
helpmewithperl.com
coosavalleyclassifieds.com
brownlows.net
myphpforum.com

Offline kortafilmer

  • Newbie
  • *
  • Posts: 15
  • Karma: 0
    • View Profile
Re: How to change a Category
« Reply #4 on: February 22, 2010, 06:42:59 PM »
the tab are in the /templates/default/header.tpl folder

look for
Code: [Select]
<!--Navigation UL Start-->
<ul>
<li><a {if $pagetype eq "home"}class="current"{/if} href='index.php' accesskey='h'><span class='key'>{$LAN_41|default:"Home"}</span></a></li>
<li><a {if $pagetype eq "feature"}class="current"{/if} href='index.php?pt=feature' accesskey='f'><span class='key'>{$LAN_2|default:"Featured"}</span></a></li>
<li><a {if $pagetype eq "all"}class="current"{/if} href='index.php?pt=all' accesskey='a'><span class='key'>{$LAN_3|default:"All"}</span></a></li>
<li><a {if $pagetype eq "categories"}class="current"{/if} href='categories.php?pt=categories' accesskey='c'><span class='key'>{$LAN_40|default:"Categories"}</span></a></li>
<li><a {if $pagetype eq "images"}class="current"{/if} href='images.php?pt=images' accesskey='i'><span class='key'>{$LAN_4|default:"Images"}</span></a></li>
<li><a {if $pagetype eq "videos"}class="current"{/if} href='videos.php?pt=videos' accesskey='r'><span class='key'>{$LAN_39|default:"Videos"}</span></a></li>
<li><a {if $pagetype eq "submit"}class="current"{/if} href='submit.php?pt=submit&amp;part=1' accesskey='s'><span class='key'>{$LAN_5|default:"Submit"}</span></a></li>
<li><a {if $pagetype eq "upload"}class="current"{/if} href='upload.php' accesskey='u'><span class='key'>{$LAN_135|default:"Upload"}</span></a></li>

</ul>
<!--Navigation UL End-->


thank you so much... I will try to change it... Thank you for the reply... :)

Offline winracer

  • Development Team
  • Pro Member
  • *******
  • Posts: 446
  • Karma: 3
    • View Profile
    • helpmewithperl.com
  • Script Version: 1.0+
Re: How to change a Category
« Reply #5 on: February 22, 2010, 06:55:49 PM »
the tab are in the /templates/default/header.tpl folder

look for
Code: [Select]
<!--Navigation UL Start-->
<ul>
<li><a {if $pagetype eq "home"}class="current"{/if} href='index.php' accesskey='h'><span class='key'>{$LAN_41|default:"Home"}</span></a></li>
<li><a {if $pagetype eq "feature"}class="current"{/if} href='index.php?pt=feature' accesskey='f'><span class='key'>{$LAN_2|default:"Featured"}</span></a></li>
<li><a {if $pagetype eq "all"}class="current"{/if} href='index.php?pt=all' accesskey='a'><span class='key'>{$LAN_3|default:"All"}</span></a></li>
<li><a {if $pagetype eq "categories"}class="current"{/if} href='categories.php?pt=categories' accesskey='c'><span class='key'>{$LAN_40|default:"Categories"}</span></a></li>
<li><a {if $pagetype eq "images"}class="current"{/if} href='images.php?pt=images' accesskey='i'><span class='key'>{$LAN_4|default:"Images"}</span></a></li>
<li><a {if $pagetype eq "videos"}class="current"{/if} href='videos.php?pt=videos' accesskey='r'><span class='key'>{$LAN_39|default:"Videos"}</span></a></li>
<li><a {if $pagetype eq "submit"}class="current"{/if} href='submit.php?pt=submit&amp;part=1' accesskey='s'><span class='key'>{$LAN_5|default:"Submit"}</span></a></li>
<li><a {if $pagetype eq "upload"}class="current"{/if} href='upload.php' accesskey='u'><span class='key'>{$LAN_135|default:"Upload"}</span></a></li>

</ul>
<!--Navigation UL End-->


thank you so much... I will try to change it... Thank you for the reply... :)

you are welcome
winracer
myfunnypets.com
helpmewithperl.com
coosavalleyclassifieds.com
brownlows.net
myphpforum.com