Jump to content
WebFlake

GTAIVCode3

Apprentice
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. GTAIVCode3's post in Name Hook please :) was marked as the answer   
    Moderator CP
  2. GTAIVCode3's post in Like Button was marked as the answer   
    It's not one of the navigation tabs but the tabs inside of the system settings.
     

  3. GTAIVCode3's post in image was marked as the answer   
    If this is what you're trying to describe, then here:
     
    Open your boardIndexTemplate
     
    Find
    <p class='desc'>{$forum_data['description']}</p> and replace with
    <img src='{style_images_url}/cat_images/{$forum_data['id']}.png' alt=''/><br /><p class='desc'>{$forum_data['description']}</p> Now, open your FTP Client and make a new map in
     
    /public/style_images/YOURTHEME/ named "cat_images".
     
    In this map upload the images for your categories. Example: If your forum id is 3, name the image 3.png and upload it into the cat_images folder.
  4. GTAIVCode3's post in joined date was marked as the answer   
    ACP > Look / Feel > Skin Manager > (choose skin) > Manage Templates / CSS > Global Templates > UserInfoPane
     
    Find:
    <li class='post_count desc lighter'>             {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']}         </li>         </if>     </ul> Add this after the </if> tag but before the </ul> tag
    <span class='group_title'>{$this->lang->words['m_joined']}</span> <span class='post_count desc lighter'>{parse date="$author['joined']" format="joined"}</span> Should look like this
    <li class='post_count desc lighter'> {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} </li> </if> <span class='group_title'>{$this->lang->words['m_joined']}</span> <span class='post_count desc lighter'>{parse date="$author['joined']" format="joined"}</span> </ul> Then you can save it. If you have any questions/problems, post in the topic.
  5. GTAIVCode3's post in reputation was marked as the answer   
    Log into your ACP --> System Settings --> Click on the "members" tab --> Reputation System.
×
×
  • Create New...