Jump to content
  • Sign Up

Skreamzja

Community Regular
  • Posts

    579
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by Skreamzja

  1. This can be marked as solved, I've uploaded the latest version for you. Just awaiting staff to approve.
  2. Version 2.0.2

    229 downloads

    This mod adds the ability to send an automatic PM to your members when an admin edits their primary group from the ACP. [b]Features:[/b][list] [*]No file edits, coded as an hook! [*]Easily enable/disable the hook from the Admin CP [*]Ability to specify always the same account to send the PMs or use the account of the admin that edited the group [*]Ability to exclude certain groups by default from receiving a PM (useful for the banned group) [*]Ability to setup a custom PM subject and message from the ACP with some quick tags (member name and new group name) [*]New options in the ACP near the dropdown of the primary group when editing a member to not send a PM to individual accounts [*]The hook itself makes use of the MemberSync option so every time the group changes a PM is sent [/list]
  3. well that is probably why it isn't working correctly. Is there a up to date version on IPS?
  4. It really all depends on the content and how much it is researched by people using google as a search engine.
  5. This will enable you to change the default white background of the different editors to match your skin. Standard Editor Login to the Admin CP Click on the Look & Feel Tab Click on the Skin name Click on CSS Click on ipb_editor.css Find this code: #ipboard_body .input_rte { width: 100%; height: 250px;} Change the code to (replacing the colours with the hex value of your choice): #ipboard_body .input_rte { background-color: #000; color: #fff; width: 100%; height: 250px;} Rich Text Editor Open the folder publicjs Open the file ips.editor.js (save a copy in case you make a mistake) Find the following (line 1100 if not changed) ips_frame_html += " background: #FFFFFF;n"; Add this underneath: ips_frame_html += " color: #fff;n"; Your code should look like this (replacing the colours with the hex value of your choice): ips_frame_html += " background: #000;n"; ips_frame_html += " color: #fff;n"; Save the file. You will need to hard refresh (Ctrl + F5) on Windows.
  6. <!-- This will only show to the groups 5, 14 & 8 which I'm assuming it's your staff groups so therefor this top section before the else tags will show to the staff team. If you want them to see the whole FAQ's as well as the original ones you have for ordinary members to see then you will also need to place it here with the FAQ's you want to show just for the staff --> <if test="in_array($this->memberData['member_group_id'], array(5,14,8) )"> html faq and links <else /> <!-- Here this is where the FAQ's will show to everyone so place your custom FAQ's here that you are wanting to show to everyone. --> html faq and links </if> Hope this helps you understand the concept of this,
  7. or you can just use custom HTML? XDDD like the following; <li id="nav_menu_7" class="left skip_moremenu "> <a id="nav_menu_7_trigger" href="/files/" title="" class="">Downloads <span class="dropdownIndicator"></span></a> <div id="nav_menu_7_menucontent" class="submenu_container clearfix boxShadow" style="position: absolute; z-index: 9999; top: 68px; left: 0px; display: none;"> <div class="left" style="z-index: 10000;"> <ul class="submenu_links" style="z-index: 10000;"> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> <li class="submenu_li" style="z-index: 10000;"><a href="/" title="BLAH BLAH" style="z-index: 10000;">TESTER</a></li> </ul> </div> </div> <script type="text/rocketscript" data-rocketoptimized="true"> document.observe("dom:loaded", function(){ //$('content').insert( $('nav_menu_7_menucontent').remove() ); new ipb.Menu( $('nav_menu_7_trigger'), $('nav_menu_7_menucontent'), { eventType: 'mouseover', closeOnMouseout: 'nav_menu_7' } ); }); </script> </li> Obviously change the links and such,
  8. Well I've visited your site, but I don't see content spy there... "/
  9. seems to me like it's a javascript conflicting with another. Have you recently installed anything else?
  10. ACP > Manage Applications > Content Spy > Edit Rename it in there.
  11. ACP > looks and Feel > skin name > Board Index Templates > boardIndex find; <!-- CATS AND FORUMS --> and the following below; <div class="category_block block_wrap"> <h3 class="maintitle">Hello Guest, Welcome to the guest panel</h3> <div class="ipsBox table_wrap"> <div class="ipsBox_container ipsPad_double short"> <form action="/index.php?app=core&amp;module=global&amp;section=login&amp;do=process" method="post"> <label for="ips_username">Username</label> <input id="ips_username" type="text" class="input_text" name="ips_username" size="25">&nbsp;&nbsp;&nbsp; <label for="ips_password">Password:</label> <input id="ips_password" type="password" class="input_text" name="ips_password" size="25"> <hr> <fieldset> <input type="hidden" name="auth_key" value="880ea6a14ea49e853634fbdc5015a024"> <input type="hidden" name="rememberMe" value="1"> <br><input type="submit" class="input_submit" value="Sign In"> or <input type="button" class="input_submit" value="Create Account" onclick="window.location='/index.php?app=core&amp;module=global&amp;section=register'"> </fieldset> </form> </div> </div> <br> </div> You might need to tweak the links a little, since i've only tested on localhost & obviously rap it around with a if statement so only guests can see it but you get the general idea.
  12. you are using the older version if I'm correct which this bug was fixed in the newer version.
  13. 1. your main content on that first site, isn't in the wrapper so therefor it's not going to change to the original size. But if you want it changed without having to do any changes to the globalTemplate go to ACP > Looks and Feel > Skin Name > CSS > ipb_styles.css find the following; #content { and add the following to it; margin-left: 70px; min-width: 980px; max-width: 1200px; width: 90%; but you can change the width from 90% to what ever you want. but with doing this you might need to change the margin-left to increase or decrease depending on which way you are wanting to change the width. 2. ACP > Looks and Feel > skin name > CSS > ipb_styles.css locate the following; .wrapper { and change the width: 95%; to what ever % you are wanting the width of the skin to be.
  14. you would need to change it in your conf_global.php in your /forum root folder.
  15. <php>$debug = base64_decode('PHAgaWQ9J2NvcHlyaWdodCc+PGEgaHJlZj0naHR0cDovL2NvZGVnYW1lLm5ldCc+SVB CIFNraW4gYnkgQ0dOPC9hPjwvcD4=');$footer_items['copyright'] = "{$footer_items['copyright']} $debug";</php> Search for that in your globalTemplate. They have encrypted the copyright.
  16. Okay I've just checked through your website it's its in either one of two places. ACP > Looks and Feel > Cold Space Skin > Edit Replacement Variables > Scroll down till you see the copyright from CGN. If you can't find it there head back over to the globalTemplate. ACP > Looks and Feel > Cold Space Skin > Global Templates > globalTemplate > CTRL + F > Search For > <p id="copyright"> and remove the line of code for the copyright "for the skin otherwise you will end up removing your own copyright line" If you are still unable to find it, then resend me a personal message with a temp admin account and i'll do a search for you.
  17. It could also be in a javascript file. Link me to your board and i'll have a quick look.
  18. http://webflake.sx/topic/1872-add-a-the-shared-media-box-in-generated-download-topics/?hl=ip.download
  19. okay sorry miss type. it's in the fade.js
  20. the default color is actually in the effect.js hope that helped you
  21. if it's relevant have WebFlake enabled board cookies? this normally solves this problem.
  22. Version 2.0.4

    304 downloads

    This app will allow members to add or change there relationship status on your board. Fetaures: • enable/disable app, • choose which groups can edit there status, • choose which groups can view members status, • add/manage unlimited custom statuses, • add flood limit, • send pms when a relationship is requested, • shout when a relationship is accepted or changed, • show status on profiles, • show status on topics, • show status on hover card,
×
×
  • Create New...