Author Topic: how can i add cat_name variable in categories.php  (Read 3005 times)

0 Members and 1 Guest are viewing this topic.

Offline jimraynor

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
how can i add cat_name variable in categories.php
« on: February 02, 2012, 09:54:20 PM »
i want this change.



$upload_button "<a href=\"".$upload_url."\"><img src=\"".get_gallery_image("upload.gif")."\" border=\"0\" alt=\"\" /></a>";
}

to

$upload_button "<a href=\"".$upload_url."\">Submit [b]$cat_name[/b] Pictures</a>";
but cat name is not seemed in categories page.

How can i do this.Thank you.
« Last Edit: February 02, 2012, 10:22:41 PM by Rembrandt »

Rembrandt

  • Guest
Re: how can i add cat_name variable in categories.php
« Reply #1 on: February 02, 2012, 10:25:16 PM »
$upload_button "<a href=\"".$upload_url."\">Submit ".$cat_cache[$cat_id]['cat_name']." Pictures</a>"

so.. and next time use the search

Offline jimraynor

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
Re: how can i add cat_name variable in categories.php
« Reply #2 on: February 02, 2012, 10:48:55 PM »
Thank you so much. You are great.