Jump to content
WebFlake

Heroes Killer

Apprentice
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Heroes Killer's post in Like to show content was marked as the answer   
    Hi.
     
    Use combination of Hide Content and Ajax Thanks.
     



  2. Heroes Killer's post in Hide links from guests in specific categories? was marked as the answer   
    This should be what you are looking for. 
  3. Heroes Killer's post in Forum Icons 2.0.0 doesn't show on sub-forums. was marked as the answer   
    Hello.
     
    I suppose you had already made changes to Board Index -> boardIndexTemplate. These changes make possible custom icons on the BoardIndex (mainpage).
     
    However, have you also changed Forum View -> forumIndexTemplate? If not...
    ___________________________________________
     
    Go to: Look & Feel -> Look & Feel -> Manage Skin Sets & Templates -> [your skin] -> Manage Templates & CSS -> Forum View -> forumIndexTemplate
     
    Find: 
    <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums&section=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><img src='{$this->settings['img_url']}/f_icon.png' /></a> <script type='text/javascript'> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <img src='{$this->settings['img_url']}/f_icon_read.png' /> </if> </td> and change it to: 
    <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums&section=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon.png' /></if></a> <script type='text/javascript'> <if test="$this->settings['dp3_fi_mode'] == 'replace'">var unreadIcon = "{$forum_data['icon_read']}";</if> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon_read.png' /></if> </if> </td> And don't forget to find: 
    <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'>{$forum_data['name']}</a> change it to: 
    <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'><if test="$forum_data['_name']">{$forum_data['_name']}<else />{$forum_data['name']}</if></a>
  4. Heroes Killer's post in Reputation button position was marked as the answer   
    It's not entirely correct, however, thank you very much and +rep.
     
    The code above is related to LikeBox only. If anyone would like to change position of RepBar, change this (it is located in the same template as the code above --> repButtons):  
    <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'right'">right</if>' id='{$data['domCountId']}'> to
    <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'left'">left</if>' id='{$data['domCountId']}'>
  5. Heroes Killer's post in Forum icons - icon doesn't display was marked as the answer   
    Yes, image is getting uploaded and it points to: my-site.nz/uploads/forumicons/icon.png
     
    Nevertheless, I've found out what the problem was - permissions. I went to my FTP, found folder called "forumicons" and changed it's CHMOD to 775, so that it could be displayed and launched publicly. Now, it's displaying correctly.
     
    Anyway, thanks for replies.
  6. Heroes Killer's post in ProMenu location was marked as the answer   
    _______________________________________________
     
    edit 2: Nevermind, I uninstalled ProMenu and created my own menu using HTML and CSS.
  7. Heroes Killer's post in IP Downloads - Hide submitter was marked as the answer   
    Ok, thank you...
     
    I'll try to find that code by myself. In a few hours I should let you know about my (un)success - maybe someone else wants to hide it, too. 
    ______________________
     
    edit: Yeah, I've made it! 
     
    If someone else has similar problem,
×
×
  • Create New...