Jump to content

IPS Tutorials

A collection of tutorials, ranging from basic to complex, aimed at helping you develop, modify, or maintain your IPS installation.

  1. This applies to both 4.2 and 4.1 versions of IPS. Occasionally you'll want to style a specific element on a specific page of your community - maybe you want to change how topic titles are shown inside a topic, or do something specific to the styles used in activity streams, without also altering other screens where the same elements are used. Your first instinct might be to open the template editor and add some custom classnames so you can style them. This would certainly work, but the downside is your template is now customized, so any future IPS4 updates would leave the template out of date. Not ideal by any means. Instead, you can use some helpfu…

    • 0 replies
    • 874 views
  2. This guide is for anyone, who wants to customize their Member Groups. It's great if you're willing to distinguish between Staff, Members, Donators or other Member Groups. I'll add some default codes within this guide, which you can easily implement on your website. Useful Links Link to all FA icons We'll be using Font Awesome icons. Link to HTML Color Names There are many colors that may suite your needs or color tastes, that's why this is handy. You don't want to have your Members to have cyan color on a Light Skin and so forth. Step by Step ACP > Members > Groups > Edit (Pencil Icon)…

    • 0 replies
    • 939 views
  3. Started by ClxCode,

    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 the c…

    • 0 replies
    • 983 views
  4. Hi. I post this topic to inform members who are experiencing the next issue in the 4.4.x version update. The new version requires php version greater than or equal to 7.1, but recommended version 7.2. This change to the php version can be made from your host's panel. If you are experiencing the problem with error 500 (server does not respond) or error 503 (the server is currently busy) I suggest you change the php settings in the following way. You will have to uncheck the box with "mysqli" and check the box with "nd-mysqli" because the version 7.1 above uses a new mysqli database structure. I hope you can use this little "tutorial" for those wh…

    • 0 replies
    • 690 views
  5. Started by Xbotero,

    When "Who's Online" block is moved to the sidebar it doesn't display info indicated by red circle below: To fix this go ACP>Customizations>Themes>your_skin>edit Click on "Templates" tab. Go public_html>core>front>widgets>whosOnline Replace "whosOnline" code with this: <h3 class='ipsType_reset ipsWidget_title'> {lang="block_whosOnline"} </h3> <div class='ipsWidget_inner {{if $orientation == 'vertical'}}ipsPad{{endif}}'> <p class='ipsType_reset ipsType_medium ipsType_light'> <span class='ipsType_light ipsType_unbold ipsType_medium'>{lang="block_whos_online_info_members" pluralize=…

    • 0 replies
    • 915 views