Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. ok not quite sure if this is what you want but use ftp/file manger and edit file adminsourcesclassesbbcodecustomdefaults.php find //----------------------------------------- // Adding rel='nofollow'? //----------------------------------------- $rels = array(); $rel = ''; $_title = ''; /* Fetch actual host for better matching */ $data = @parse_url( $option ); if ( $this->settings['posts_add_nofollow'] ) { if ( ! stristr( $data['host'], $_SERVER['HTTP_HOST'] ) ) { $rels[] = "nofollow"; } } if ( $this->settings['links_external'] ) { if ( ! stristr( $data['host'], $_SERVER['HTTP_HOST'] ) ) { /* Look a little closer */ $rels[] = "external"; $_title = $this->lang->words['bbc_external_link']; } } if ( count($rels) ) { $rel = " rel='" . implode( ' ', $rels ) . "'"; } return "<a href='{$option}' class='bbc_url' title='{$_title}'{$rel}>{$content}</a>"; change the {$option} in the last lien to the http that you want it to go .
  2. Yes it is. Also you can leave this field blank and it will not show up. Topic View Format? Leave blank if you do not wish to add this field in the author details when viewing a topic. {title} is the title of the custom field, {content} is the user added content. {key} is the form select value of the selected item in a dropdown box. Example: {title}:{content} Example: {title}:
  3. And you have clicked rebuild hecking all boxes on the left and right site of the screen?? Then clicked rebuild all skin caches at top of screen?
  4. What portal are you using? Do you want it on the home page or a tab on the navaigtion bar?
  5. I have only seen a roster one site 0xfe.org and it was used in the ip_content page A simple db select for the information and the html layout to show it.
  6. Happens a lot. Bad programming so you can use ftp and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
  7. Try adding a new user then log in as him and then use a different browser to see if that member works correctly.
  8. try this ?php if (in_array($this->memberData[member_group_id), array(2,3,5,7)) ) { echo "some stuff here"; } ?>
  9. He is talking about like when you put the mouse on the name phun it shows you profile card. Here is a small tutorial I found on another site. Developer Articles > Using the javascript popup class
  10. Or you might want to go to the admin panel > System Settings > DevFuse > Guest Message > Guest message text And type whatever you want using the built in editor .
  11. Or you can add it to the Ip.downloads page this way Look & Feel > Manage Skin Sets & Templates > Manage Templates (Downloads) Download Manager > downloadsPortal find <if test="indexsubcategories:|:is_array($data['subcategories']) AND count($data['subcategories'])"> <a href='#' class='cat_toggle'>{$this->lang->words['toggle']}</a> </if> </li> </foreach> </ul> </div> </div> <div class='ipsLayout_right'> change to <if test="indexsubcategories:|:is_array($data['subcategories']) AND count($data['subcategories'])"> <a href='#' class='cat_toggle'>{$this->lang->words['toggle']}</a> </if> </li> </foreach> </ul> </div> <php> require_once( IPSLib::getAppDir( 'donate' ) . "/sources/hooks.php" ); $this->registry->setClass('donate_hooks', new donateHookGateway( $this->registry ) ); $out = $this->registry->getClass('donate_hooks')->featuredGoalsSidebar(); </php>{$out} </div> <div class='ipsLayout_right'> But if you do it TJKeeran's way you should actually duplicate the file in the hooks folder with a new name and add a new file declaration to the donation tracker so that you don't lose the original one from the board index...
  12. If you have a vps use this https://www.rfxn.com/projects/linux-malware-detect or try these suggestions http://webflake.sx/topic/2003-identifying-removing-and-preventing-malware/
  13. Happens a lot. Since it is an encoded product you can do this to not show the errors. you can use ftp and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
  14. Did you do all of these steps? AdminCP > Look & Feel > Template Tools > Rebuild Master Skin Data. Choose Rebuild HTML, Rebuild CSS, Rebuild Replacements, check all boxes on right side and press Rebuild AdminCP > Look & Feel > Template Tools > Recache Skin Sets > Recache All Skin Sets
  15. You can try this. find in globaltemplate <li><a href="{parse url="app=core&amp;module=modcp" base="public"}" title='{$this->lang->words['gbl_modcp_link_title']}'>{$this->lang->words['gbl_modcp_link']}</a></li> change to <if test="showmodcplink:|:$this->memberData['g_access_cp']"><li><a href="{parse url="app=core&amp;module=modcp" base="public"}" title='{$this->lang->words['gbl_modcp_link_title']}'>{$this->lang->words['gbl_modcp_link']}</a></li></if>
  16. these should give you reputation System Settings > Hooks > Reputation bar in user info
  17. Check the donators group in admin under member group settings for Access Control Is Super Moderator (can moderate everywhere)? YesNo make sure it is set to no...
  18. That is probably because you uploaded the folder upload instead of the files in that folder as the instructions said to do.
  19. what is the link you saw that posted? Put it in a code bbcode.
  20. All I get from you link is an ad for lightshot.
  21. I do not see the contributor there. So if it is part of the custom profile setup just grab the 3 dots on left side and drag it where you want it. If it is a hook you will have to edit the hook to display on a different part of the screen. Above the custom profile fields. What do you mean put and image there. I thought that image was the popup hook for comments.
  22. in admin panel Applications & Modules > Manage Applications & Modules grab the 3 dots by holding left mouse down and drag it where you want it in order. Admin > Members > Custom Profile Fields click the word location and go to bottom and find topic view format change <span class='ft'>{title}</span><span class='fc'>{content}</span> to this <span class='ft'>{title}</span>: <span class='fc'>{content}</span> Comments try this hook http://webflake.sx/files/file/500-profile-comments/ For the contributor I would have to see the userinfopane template. Pate in a code box in a spoiler box.
  23. My suggestion is to match one of these ads companies that compliment the content of your website.
×
×
  • Create New...