Jump to content
  • Sign Up

FlinTY

Contributor
  • Posts

    135
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by FlinTY

  1. goto: ACP > LOOK and FEEL > your skin click on it > TOPIC VIEW > TOPICVIEW TEMPLATE and replace this code ipb.templates['post_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['comment_action_count']} </span><select id='tactInPopup' class='input_select'><option value='approve'>{$this->lang->words['cpt_approve']}</option><option value='delete'>{$this->lang->words['cpt_hide']}</option><option value='sundelete'>{$this->lang->words['cpt_undelete']}</option><option value='deletedo'>{$this->lang->words['cpt_delete']}</option><option value='merge'>{$this->lang->words['cpt_merge']}</option><option value='split'>{$this->lang->words['cpt_split']}</option><option value='move'>{$this->lang->words['cpt_move']}</option></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); replace with: ipb.topic.modPerms = []; <if test="$this->memberData['g_is_supmod']"> ipb.topic.modPerms['approve'] = 1; ipb.topic.modPerms['delete'] = 1; ipb.topic.modPerms['hide'] = 1; ipb.topic.modPerms['unhide'] = 1; ipb.topic.modPerms['merge'] = 1; ipb.topic.modPerms['split'] = 1; ipb.topic.modPerms['move'] = 1; <else /> <if test="isset( $this->memberData['forumsModeratorData'][ $forum['id'] ] )"> ipb.topic.modPerms['approve'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['post_q']}; ipb.topic.modPerms['delete'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['delete_post']}; ipb.topic.modPerms['hide'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['bw_mod_soft_delete']}; ipb.topic.modPerms['unhide'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['bw_mod_un_soft_delete']}; ipb.topic.modPerms['merge'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; ipb.topic.modPerms['split'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; ipb.topic.modPerms['move'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; </if> </if> ipb.templates['post_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['comment_action_count']} </span><select id='tactInPopup' class='input_select'><option value='approve'>{$this->lang->words['cpt_approve']}</option><option value='delete'>{$this->lang->words['cpt_hide']}</option><option value='sundelete'>{$this->lang->words['cpt_undelete']}</option><option value='deletedo'>{$this->lang->words['cpt_delete']}</option><option value='merge'>{$this->lang->words['cpt_merge']}</option><option value='split'>{$this->lang->words['cpt_split']}</option><option value='move'>{$this->lang->words['cpt_move']}</option></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); goto: ACP > LOOK and FEEL > your skin click on it > FORUM VIEW > FORUMINDEX TEMPLATE find this should be near the top though ipb.templates['topic_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['f_comment_action_count']} </span><select id='tactInPopup' class='input_select'></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); and replace it with ipb.forums.modPerms = []; <if test="$this->memberData['g_is_supmod']"> ipb.forums.modPerms['approve'] = 1; ipb.forums.modPerms['delete'] = 1; ipb.forums.modPerms['hide'] = 1; ipb.forums.modPerms['unhide'] = 1; ipb.forums.modPerms['pin'] = 1; ipb.forums.modPerms['unpin'] = 1; ipb.forums.modPerms['open'] = 1; ipb.forums.modPerms['close'] = 1; ipb.forums.modPerms['move'] = 1; ipb.forums.modPerms['merge'] = 1; <else /> <if test="isset( $this->memberData['forumsModeratorData'][ $forum_data['id'] ] )"> ipb.forums.modPerms['approve'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['topic_q']}; ipb.forums.modPerms['delete'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['delete_topic']}; ipb.forums.modPerms['hide'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['bw_mod_soft_delete']}; ipb.forums.modPerms['unhide'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['bw_mod_un_soft_delete']}; ipb.forums.modPerms['pin'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['pin_topic']}; ipb.forums.modPerms['unpin'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['unpin_topic']}; ipb.forums.modPerms['open'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['open_topic']}; ipb.forums.modPerms['close'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['close_topic']}; ipb.forums.modPerms['move'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['move_topic']}; ipb.forums.modPerms['merge'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['split_merge']}; </if> </if> ipb.templates['topic_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['f_comment_action_count']} </span><select id='tactInPopup' class='input_select'></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); Screen Shots: Forum View Screen Shots: Topic View
  2. OMG and like i said to them and now you i always search before creating a topic and those other topics that were created haven't been answered so i created another to see if someone could answer mine P.S do you not read other post because i already said this to one guy, GOD.
  3. i no i seen them ones, but i was on about this one
  4. first of i did use the search i always do before creating a topic and second its only one problem not multiple, in the search there was someone who figured this out and he didn't say how he just said "fixed it myself" and how am i meant to know what he's on about
  5. My Moderator forum drop down menu is not displaying properly is it a problem with my skin as i use IPB 3.4.2 and the skin is from IPB 3.3.1 here look:
  6. close topic figured it out myself but thanks for the help
  7. i found some css if that helps #community_app_menu a:before{ content: ""; width: 32px; height: 32px; display: block; margin: 0 auto 8px auto; } #community_app_menu #nav_home a:before{ background-image: url("{style_images_url}/nav_home.png"); } #community_app_menu #nav_app_forums a:before{ background-image: url("{style_images_url}/nav_forums.png"); } #community_app_menu #nav_app_members a:before{ background-image: url("{style_images_url}/nav_members.png"); } #community_app_menu #nav_app_blog a:before{ background-image: url("{style_images_url}/nav_blogs.png"); } #community_app_menu #nav_app_calendar a:before{ background-image: url("{style_images_url}/nav_calendar.png"); } #community_app_menu #nav_app_gallery a:before{ background-image: url("{style_images_url}/nav_gallery.png"); } #community_app_menu #nav_app_ipchat a:before{ background-image: url("{style_images_url}/nav_chat.png"); } #community_app_menu #nav_app_ccs a:before{ background-image: url("{style_images_url}/nav_icon.png"); } #community_app_menu #nav_app_downloads a:before{ background-image: url("{style_images_url}/nav_downloads.png"); } #community_app_menu #nav_app_nexus a:before{ background-image: url("{style_images_url}/nav_nexus.png"); }
  8. Just Tried re-adding it and it never worked
  9. I'll try and re-upload another admin folder
  10. Oh sorry just didn't know what to call it sorry
  11. I'm Just Wondering i have just installed the concise skin and i'm just wondering how i can do this and i want to change the icon to make it look like this
  12. nope my site as been up for quite a while and all of a sudden it just disappeared
  13. really need help on this i don't understand where its is
  14. I am the creator/site-owner or whatever you want to call it and its nothing to do with admin restrictions
  15. My Admin CP --> System --> System Settings --> Forums --> the forums bit is missing for some reason one minute it was there next it has gone
  16. every time i post any link in the shoutbox on my site it doesn't work unless i put in it
  17. oh sorry my bad i have never tried portal 1.3 i'll search for it now and try it thanks lock down
  18. go to your FTP and edit initdata.php and scroll down until your see: define( 'IPS_DEFAULT_PUBLIC_APP', 'Forums' ); and change it to: define( 'IPS_DEFAULT_PUBLIC_APP', 'uportal' );
  19. i fixed it myself i nether had to re-install all i did was i got a copy of all the bbcodes from a friend and delete all mine and re-installed them and it worked perfect, topic answered thanks to myself
  20. and you just said (recode all your bbcodes) why would i do that when it is only one code that is the problem and someone helped me last time on forumcore but now i can't get that back
  21. i am not changing my IPB over one bbcode thats just daft all i want is a new bbcode for code
×
×
  • Create New...