- 📢 Welcome to FundayForum – Explore Trending Topics
- 🌟 Discover What’s Trending Today
- HR & Office Manager Associate Jobs in Gujranwala – Full-Time Job Opportunity 2026
- PTI chief warns Sindh division without public consent would weaken federation
- Prince William, Princess Kate say 'NO' to King Charles plan
- PTI leader Hammad Azhar's mother moves LHC for son's recovery over 'police detention'
- Prince Harry, Meghan pay price for hasty decision as delays foil key plans
- Tucson real estate agency drops agent duct-taped aboard American Airlines flight
- test
- Wildfires, heatwaves endanger air quality, health: UN
- Meghan Markle shuts down 'bombshell' memoir rumours for good
- Meghan Markle left surprised after Beyonce's move during London visit
IPS Community Help/Support And Tutorials
Need Help for IPS Community Forum? Share or get download file support, Tutorials and general help for IPS.
Please Note!
This Section is only for IPS Community Suite Support and tutorials. Please do not create any unwanted topic here.
60 topics in this forum
-
- 0 replies
- 5.4k views
Wasn't too sure if this is the right section, but this is where I felt it was most appropriate from the forum titles I could see. I in no way claim to own this as I just found it on a small forum and thought others may find it useful. I have edited the Read Me below to contain more up to date and relevant information. Shiroyuki JavaScript IPB to Discord Bot. Summary: This is a JavaScript bot developed using Node.JS which connects to discord via the Eris library. This bot uses REST API to grab information like the latest threads, posts, and users from Invision Power Boards. This is only a basic bot and as such can only post latest threads, authors, and posts b…
Last reply by ADMIN, -
-
- 0 replies
- 5.4k views
So after doing a little research after discovering this issue I discovered that in IPBS 4.1 a file as been removed which was causing this error we all been getting and after 2 hours of playing around with there code I discovered a temp fix. So if any of you guys/girls being getting this fatal script error Example: Here's how to fix it. First of all you will want to go to where all your of your files are located and then go to this directory Applications>> Donate >> Sources >> Reward >> Reward.php And then search for this line of code $form->add( new IPS\Helpers\Form\NumberRange( 'reward…
Last reply by ADMIN, -
- 0 replies
- 851 views
This tutorial will show you how to add various social media icons (twitter, youtube, facebook) icons in the IPB header. In this case next to the quick search box. Step 1. Open your Admin CP > Look & Feel Tab > select skin > Global Templates > globalTemplate. Find: <if test="canSearch:|:$this->memberData['g_use_search'] && $this->settings['allow_search']"> {parse template="quickSearch" group="global" params=""} </if> Add BELOW: <ul class='ipsList_inline right' style='margin-top: 20px; margin-right: 30px;'> <li style='margin:0px;'><a href='http://twitter.c…
Last reply by ADMIN, -
- 0 replies
- 858 views
IP.Shoutbox has several Quick Commands that can be used to make certain actions perform in a faster way. Here is a list that explains how to use them properly: /announce [Announcement Text] - This will update the announcement in your Shoutbox without having to go to the Admin CP /archive - Launches the Shoutbox Archive window (only if member has permission to view it!) /ban [name] - This will ban a member from the Shoutbox (only moderators with correct permissions can use this command) /moderator member [id|name] - This will launch the appropriate moderator options for that particular member /moderator shout [id] - This will launch the appropriate moderator options f…
Last reply by ADMIN, -
Hey, if u want a custom box with the default style then use this here. <li class="ipsWidget ipsWidget_vertical ipsBox" data-controller="core.front.widgets.block"> <div class="ipsWidget ipsWidget_vertical ipsBox"> <h3 class="ipsType_reset ipsWidget_title">BOX NAME</h3> <div class="ipsWidget_inner"> Your HTML Text </div> </div> </li>
Last reply by ADMIN, -
- 0 replies
- 812 views
Enter in your ACP; Go to "Customizations > Themes > "Theme that you use" > Edit HTML and CSS"; Go to "Templates > core > front > global > logo" At the beginning of your code, place: <font face="NameOfFont">; At the end of your code, place: </font> On final of your "logo" code, you need put this code: <style> @font-face { font-family: NameOfFont; src: url(http://yourdomain.com/uploads/YourFont.ttf); font-weight:400; } NameOfFont { font-family: NameOfFont; } </style> Change NameOfFont for t…
Last reply by Waqas Dar, -
- 0 replies
- 808 views
Pinned topics prefix like IPB 3.4.x IPB 4.x displays a different badge of version 3.x for pinned topics and featureds topics. For some reason some people - like me - prefer the badge as they were in the previous version of the software. It looked like a prefix. IN FORUM ROW GO TO: ACP > Customizations > Themes > YourTheme (</> EDIT HTML/CSS) - find: forums > front > forums > TopicRow FIND: {{if $row->mapped('pinned')}} <span><span class="ipsBadge ipsBadge_icon ipsBadge_small ipsBadge_positive" data-ipsTooltip title='{lang="pinned"}'><i class='fa fa-thumb-tack'></i></span>&…
Last reply by ADMIN, -
- 0 replies
- 820 views
Primary Group in Staff Page This will display the primary group of the user instead of the member title on the forum team page Go to: ACP > Customization > Themes > YourTheme (Edit HTML/CSS) - find: core > front > staffdirectory > layout_blocks and click for edit REPLACE ALL CONTENT WITH: {{$count=0;}} {{foreach $users as $user}} {{if $count%4 == 0}} <div class='ipsGrid ipsGrid_collapsePhone cStaffDirectory_blocks'> {{endif}} <div class='ipsGrid_span3 ipsType_center ipsAreaBackground_light ipsPad'> {template="userPhoto" app="core" group="global" params="$user->member(), 'small'"} <h3 class='ipsType_section…
Last reply by ADMIN, -
- 0 replies
- 777 views
Change Avatar Style Preview Modifie in CSS: Select the skin you want to modify, then go to Core >> front >> custom> custom.css and add this code: .cAuthorPane_photo img{ max-width: 170px; } Modifie in Template Go to Forums >> front >> topic >> postconainer and search for: <li class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </li> Change: <li class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo}} <a href='{url="app=core&mod…
Last reply by ADMIN, -
- 0 replies
- 756 views
helpful IF codes In IPS4, logic checks are done using the special {{if}}, {{else}} and {{elseif}} tags. As with standard programming logic, if the expression results in true, the block of code within is executed. If it is false, it isn't (and if there's an else or elseif block, that is tested for a true result instead). So, a block of logic in a template might look like this: {{if member.member_id == 3}} <!-- If the member has ID 3, this will be shown --> {{elseif member.member_id == 9}} <!-- But if the member has ID 9, this will be shown instead --> {{else}} <!-- If the member isn't ID 3 or 9, then this will show --> {{endif}} If…
Last reply by ADMIN, -
- 0 replies
- 688 views
Hello my lovely friends! somebody was asking at the IP.Board support section how he could color his user titles and I found a quite easy way to help him out. I think theres no plugin out there to do this job, so we do it ourself! I think it will help alot of people here. 1. Go to Admin CP -> Customization -> Themes -> YOUR THEME -> Edit HTML and CSS 2. Search the Templates Tab for -> forums -> front -> topics -> postContainer 3. Search the following code: {{if $comment->author()->member_title && $comment->author()->member_id}} <li class='ipsResponsive_hidePhone ipsType_break'>{$comment-…
Last reply by ADMIN, -
- 0 replies
- 794 views
How to add an Imgur upload button in the editor *This is my original tutorial. You may share it freely, but(!) consider mentioning who wrote it. 1. Create an Imgur account, and then register an application here: https://api.imgur.com/oauth2/addclient Now you have a client ID, which is to be used in the Imgur plugin we add to the editor. 2. Download the Imgur plugin from http://ckeditor.com/addon/imgur Go to your ACP-> Customization-> Editor--> Toolbars-> "Add Button". Upload the plugin file(zip) for installation. By now you can drag the button to the toolbar for it to show, but it won't function just yet. …
Last reply by ADMIN, -
- 0 replies
- 1k views
Group Formatting is a great way to apply flare and personality to a usergroup, by making their names so fancy they become the envy of anyone who see's them, and there is quite a lot you can do with it. A little understanding in CSS/HTML goes a long way with these. You can really get creative and tinker away like crazy with these once you get into it (I personally find it fun, xD). Before getting into it (for the benefit for anyone literally just stepping into this the makeup for your usergroup is configured in the form of prefix code and suffix code. Prefix code controls what comes before the code, and how the group name is formatted, and the suffix code closes off the…
Last reply by ADMIN, -
- 0 replies
- 650 views
An issue has been identified that may prevent you from moving comments from one item to another item (e.g. splitting posts from one topic to another topic), resulting in an error code 2F173/I. To resolve this issue please upload the following patched file to your server: system/Content/Comment.php Comment.php
Last reply by ADMIN, -
- 0 replies
- 737 views
Hey people, just a quick guide to remove the "Portal by DevFuse · Based on IP.Board Portal by IPS" on the Portal page in Portal 1.6.0 by DevFuse. So firstly you need to download Portal 1.6.0 (This will probably work on all versions this is just the one i did it on) which is available here: Then you need to unzip the folder, and you should get Portal Install Readme Upgrade from IP.Board 3.X portal.tar So now you need to unzip portal.tar and you'll get a list of directories, you want to navigate to this one: modules front portal and now open portal.php in a text editor (i use notepadd++) and find this line whic…
Last reply by ADMIN, -
- 0 replies
- 735 views
We create a clone of menu for scroll with this own parameter In "globaltemplate" search : {template="includeJS" if="theme.js_include == 'footer'" app="core" group="global" location="global" params=""} Add below : <script> // Create a clone of the menu, right next to original. $('.ipsNavBar_primary').addClass('original').clone().insertAfter('.ipsNavBar_primary').addClass('cloned').css('position','fixed').css('top','0').css('margin-top','0').css('z-index','500').removeClass('original').hide(); scrollIntervalID = setInterval(stickIt, 10); function stickIt() { var orgElementPos = $('.original').offset(); orgElementTop = orgElementPos.top;…
Last reply by ADMIN, -
- 0 replies
- 878 views
How to make... Go to "ACP > Pages > Blocks > Create New Block"; In "Type", mark "Custom"; In "Content Editor", mark "Manual HTML"; Click on "Next"; Put some details and click on "Content" tab; In "Content" field, add this code: <h3 class="ipsWidget_title ipsType_reset">YOUR TITLE</h3> <div class="ipsPad ipsWidget_inner" style="border: 0;padding: 0;"> YOUR CODE </div> Save this config and go to index; Now, just click on "Manage Blocks", "Pages" and "Custom Blocks"; Add the block and enjoy
Last reply by ADMIN, -
- 0 replies
- 688 views
Go to applications --> serverlist --> tasks Find: if(!\IPS\Application::appIsEnabled('serverlist') OR !\IPS\Settings::i()->gs_sl_enabled): Change to: if(!\IPS\Application::appIsEnabled('serverlist') OR !\IPS\Settings::i()->sl_enabled): I upload the file again
Last reply by ADMIN, -
- 0 replies
- 646 views
Hi, Anyone Know how to desactivated SEO ? I dont want to find my forum on google or other search engine. Thanks for your help
Last reply by ADMIN, -
- 0 replies
- 820 views
FontAwesome Forum Icons So this is to get the forum icons like we currently have. You need at least some css & html knowledge and be able to use google/firefox's developer tools. Getting your Forum IDs For this to work at all you need to know the forum ID's you want to change. You can find these by right clicking them and checking the data-forumid attribute: You can also see the forum ID if you edit the forum in the admin cp, at the end of the url: Adding some template code Go to the theme and open up the following template: forums > front > index > forumRow At the end of every instance of a span with t…
Last reply by ADMIN, -
- 0 replies
- 582 views
Hi, Earlier i saw some people was asking how AltisLife created their Server Statistic at the top of their website. This guide will help you make exactly the same. Go to Admin CP -> Customization -> Themes -> Your Theme -> Edit HTML and CSS -> CSS -> custom.css and open the css file. Paste the following CSS code onto the custom.css: .infoTab { float: left; line-height: 42px; font-family: 'Montserrat', sans-serif; font-size: 130%; padding-left: 75px; } .msg { float:right; line-height:42px; font-family:'Montserrat', sans-serif; font-size:140%; } .serverBar li { padding-left:10px; } .playerCount { color:#…
Last reply by ADMIN, -
- 0 replies
- 668 views
Hello, For those who want to leave the warnings of his forum most beautiful and attractive, here have some css boxes: HTML <div class="mbh-success mbh-notification-box">This is the success box</div> <div class="mbh-failure mbh-notification-box">This is the failure box</div> <div class="mbh-warning mbh-notification-box">This is the warning box</div> <div class="mbh-information mbh-notification-box">This is the information box</div> <div class="mbh-question mbh-notification-box">This is the question box</div> <div class="mbh-tip mbh-notification-box">This is the tip box</div> <div class="m…
Last reply by ADMIN, -
- 0 replies
- 579 views
Happy Holidays WebFlakians! Here's a quick way to add a snow effect to your IP.Board installation without having to use a plugin, so it works on most versions. Requirements Snowfall jQuery script: http://loktar00.github.io/JQuery-Snowfall/snowfall.jquery.min.js A tiny bit of template editing knowledge in your IPS installation. Save (CTRL+S) and then Upload the js scripts to your FTP in a location where you can easily find them. For this tutorial we'll just use /uploads/, since my time really digging into IPS4 has been so short i couldn't think of a better location. Inserting the Snow Script (IPS 4) Go to Customization > Appearance > Themes and hit the "Edi…
Last reply by ADMIN, -
- 0 replies
- 626 views
Go to ACP Go to your theme Click on "Edit HTML and CSS" Search for "custom.css" Aplicate this code and save: #elLicenseKey { display: none; }
Last reply by ADMIN, -
- 0 replies
- 656 views
Go to ACP Go to your theme Click on "Edit HTML and CSS" Search for "custom.css" Aplicate this code and save: body[data-pagemodule="forums"][data-pagecontroller="index"] .ipsPageHeader{ display: none; }
Last reply by ADMIN, -
- 0 replies
- 662 views
Hi all, for remove the notification update of IPS : Edit your theme in html & css => search : ipsMessage => select : updateWarning => comment the code <!-- you code page of updateWarning --> and save Now you have no more notification of new update of IPS
Last reply by ADMIN, -
- 0 replies
- 558 views
Hi. Recently, i have been experimenting with DDoS protected CDN's such as Cloudflare, Incapsula and other providers, however, none of them really offered me good layer 7 DDoS protection. However, after my friend founded this new company which runs on his servers, all DDoS attacks have been mitigated immediately. This tutorial will explain how you can get free DDoS protection from AthenaLayer.com and how to set it up. 1. First, go in your AdminCP (IPB 4.x.x), and go to Security Settings, then you need to select "Show AdminCP link to Administrators" and "Trust IP addresses provided by proxies", since the CDN changes your IP everytime it refreshes, it's n…
Last reply by ADMIN, -
- 0 replies
- 776 views
This is how to make an IPB Feature Plan. Please note that this is not a RIP of IPS', this is my own version, so if you find any variations that is why. If you find any bugs, please comment them below. I will not attempt to fix them, but if someone comments a fix for a bug, I will edit it into this tutorial. Requirements: Pages Application (can be found in funday's copy of IPS 4.x). Basic Knowledge of PHP. A knowledge of the Pages application. Go into your ACP > Pages > Databases. Click Create New to create a new Database. A pop-up will appear. Make sure you are on the Create New Database and click Next. Make th…
Last reply by ADMIN, -
- 0 replies
- 953 views
Hello everybody, Here is a small tutorial to add custom blocks at the sidebar. I'm not English so i don't speak very good english :/. Go ACP > Themes > Edit HTML / CS. In the searchbox, write -> sidebar and select sidebar. {{if \IPS\Output::i()->sidebar['enabled'] && ( ( isset( \IPS\Output::i()->sidebar['contextual'] ) && trim( \IPS\Output::i()->sidebar['contextual'] ) !== '' ) || ( isset( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) && count( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) ) || ( \IPS\Dispatcher::i()->application instanceof \IPS\Application AND \IPS\Dispatcher::i()->application->canMa…
Last reply by ADMIN, -
- 0 replies
- 645 views
Step:1 Go to ACP > Customization > Themes and Select the skin you wish to edit Step: 2 Find postContainer in the templates Step: 3 Look for <li class='cAuthorPane_photo'> {template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"} </li> Step: 4 Replace it with <li class='cAuthorPane_photo'> {{if $comment->author()->pp_main_photo}}<a href='{url="app=core&module=members&controller=profile&id={$comment->author()->member_id}-{$comment->author()->name}" seoTemplate="profile" seoTitl…
Last reply by ADMIN,
-
Recently Browsing 0 members
- No registered users viewing this page.
