Jump to content
  • Sign Up

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. Ok that is not as easy as you would hope. Those are also links so they are controlled with the class maintitle a option. You should find it in the css ipb_styles . It may also change other links that you don't want changed. Give it a try and you can always use the revert template icon on the right hand side of screen.
  2. You should have been more clear so you could have been understood as none of the responders knew what you wanted until this post. My responses were correct for the information given. But be assured I will not attempt to aid you any more. I accept your mandate.
  3. Did you click the new notification not just the notification tab? I am not sure but I think it will refresh and display until it is viewed.
  4. It is a slow host. Once too many connections are on it causes a slow connection or timeout which doesn't allow the css to load properly.
  5. That is no mod or hook. Read it carefully. It is part of member management in admin panel. Reading is fundamental. Learn it. Use it.
  6. You are welcome. @000rune000 Reputation points is not thanked count.
  7. Yeah you didn't ask that. Haha.. You are welcome.
  8. ok for #1 use sql toolbox or phpmyadmin update profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Just change the 4,6,7,10 to the member ids you want update separated by a comma as shown. If you get an error it will because you have a prefix like ipb_ or ibf_ or ??? so you will need to add it like this update ibf_profile_portal set thanked = thanked+1000 where pp_member_id in (4,6,8,10);Always backup database or table profile_portal before making changes...
  9. Did you do as I told you?? If you want me to look at it then I would need a admin login and phpmyadmin login. You can pm them to me if you want me to do it.
  10. It depends how you want to manipulate it. Do you want to change the total in the userinfo and rofile fields when shown or do you want to change it permanently with a database command?
  11. add this to your css after the url statement background-attachment: fixed;
  12. Using ftp edit the file conf_global.php make the admin group the group number of founder. Then using phpmyadmin edit your member record and change the member_group_id to a 4 and the mgroup_others to 6,?? changing the ?? to the group number of the founder group.
  13. 2.01 is latest but some nulled IPB versions of 3.4x had problems with it.
  14. My guess is you did not install it correctly. How do you expect us to help you with that information?
  15. That's what you asked for.. find <foreach loop="forums:$_data['forum_data'] as $forum_id => $forum_data"> change to <php>$count=0;</php><foreach loop="forums:$_data['forum_data'] as $forum_id => $forum_data"><php>$count++;if(($count%2)==0){$color='style="background-color: lightgreen;"';}else{$color='style="background-color: lightblue;"';}</php> Now find all those classes class='col_c_icon' , class='col_c_forum' , class='col_c_stats stats' in the forums if statement and add the {$color} until you get it the way you want it.
  16. Ok yours has a lot of components. So you will have to change the code to get the result you want by trial and error. find <foreach loop="categories:$cat_data as $_data">change to <foreach loop="categories:$cat_data as $keyCat => $_data"><php>if((($keyCat)%2)==0){$color='style="background-color: lightgreen;"';}else{$color='style="background-color: lightblue;"';}</php>find <table class='ipb_table' summary="{$this->lang->words['forums_in_cat']} '{$_data['cat_data']['name']}'"> <tr class='header hide'> <th scope='col' class='col_c_icon'>&nbsp;</th> <th scope='col' class='col_c_forum'>{$this->lang->words['cat_name']}</th> <if test="$this->settings['removeStatsColumn']=='no'"><th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th></if> <if test="canSeeLastInfoHeader:|:$this->memberData['gbw_view_last_info']"><th scope='col' class='col_c_post'>{$this->lang->words['last_post_info']}</th></if> </tr>Change to <table class='ipb_table' {$color} summary="{$this->lang->words['forums_in_cat']} '{$_data['cat_data']['name']}'"> <tr class='header hide'> <th scope='col' class='col_c_icon'>&nbsp;</th> <th scope='col' class='col_c_forum'>{$this->lang->words['cat_name']}</th> <if test="$this->settings['removeStatsColumn']=='no'"><th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th></if> <if test="canSeeLastInfoHeader:|:$this->memberData['gbw_view_last_info']"><th scope='col' class='col_c_post'>{$this->lang->words['last_post_info']}</th></if> </tr>You also have these classes class='col_c_icon' , class='col_c_forum' , class='col_c_stats stats' and class='col_c_post' all through the template. You can add the {$color} after each until you get your desired effect.
  17. Where is the rest of it?? Parts are missing...
  18. Put your boardindextemplate in a spoiler in a bbcode. Your skin is too different than mine to guess.
  19. Then you have answered your own question? If it works on other designs on your forum then it must be that design. Contact who designed it or if it is nulled choose a different one.
  20. Just edit the template topic view => post find <div class='post_body'>change to <php>if(($post['post']['post_count']%2)==0){$color='lightgreen';}else{$color='lightblue';}</php> <div class='post_body' style='background-color: {$color};'>
  21. From 3.?? on I don't exactly. Go to IPS and search for extra breaks in quoted replies or topics.
  22. If it didn't work and you enabled the hook/app and chose the forums and icons correctly you could have the wrong version of the hook/app. Of course there is another way. You could upload your icons to the image foler for that skin and give the icons a matching name to the forum id like forum id 1 would have a corresponding name 1.png or whatever you created the type like jpg, gif or ??? Then edit the boardindextemplate adding the image in front of the name something like this find <tr class='header hide'> <th scope='col' class='col_c_icon'>&nbsp;</th> <th scope='col' class='col_c_forum'>{$this->lang->words['cat_name']}</th> <th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th> <if test="canSeeLastInfoHeader:|:$this->memberData['gbw_view_last_info']"><th scope='col' class='col_c_post'>{$this->lang->words['last_post_info']}</th></if> </tr> <!-- / CAT HEADER --> <foreach loop="forums:$_data['forum_data'] as $forum_id => $forum_data"> <if test="forumRedirect:|:$forum_data['redirect_on']"> <tr class='redirect_forum' id='f_{$forum_data['id']}'> <td class='col_c_icon'> <img src='{$this->settings['img_url']}/f_redirect.png' /> </td>to <tr class='header hide'><th scope='col' class='col_c_icon'>&nbsp;</th><th scope='col' class='col_c_icon'>&nbsp;</th><th scope='col' class='col_c_forum'>{$this->lang->words['cat_name']}</th><th scope='col' class='col_c_stats stats'>{$this->lang->words['stats']}</th><if test="canSeeLastInfoHeader:|:$this->memberData['gbw_view_last_info']"><th scope='col' class='col_c_post'>{$this->lang->words['last_post_info']}</th></if></tr><!-- / CAT HEADER --><foreach loop="forums:$_data['forum_data'] as $forum_id => $forum_data"><if test="forumRedirect:|:$forum_data['redirect_on']"><tr class='redirect_forum' id='f_{$forum_data['id']}'><td class='col_c_icon'><img src='{$this->settings['img_url']}/{$forum_data['id']}.png' /></td><td class='col_c_icon'><img src='{$this->settings['img_url']}/f_redirect.png' /></td>Remember all skins are not alike so find something similar. Also youu will have to play with the html to get it looking the way you want it.
×
×
  • Create New...