Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/10/2020 in all areas

  1. Version 1.0.0

    192 downloads

    Simple plugin to modify background settings in profile name and group on profile view. Compatible with IPS 4.2/4.3/4.4
    1 point
  2. You can remove it from the templates or override the cAcpNotificationBanner class from your stylesheet. Removing it by overriding the cAcpNotificationBanner class: Open your custom.css and paste this in it: .cAcpNotificationBanner_information { display: none; } Removing it from the templates (I don't recommend doing so): Open the globalTemplate of your theme and search for {template="updateWarning" app="core" group="global" params=""} You can remove it but this template holds another important template which is also shown to normal members, so instead of just removing it, we are going to replace it with: {template="announcementTop" app="core" group="global" params=""} and it's done.
    1 point
  3. Hello @vasil1682, the IPS Framework is great and provides the needed properties and methods for this. If you want only a certain user group to see the content: {{if \IPS\Member::loggedIn()->member_group_id === X}} // This content is only visible for the specified userGroup, // in this case it would not work since X is not a user group, replace it with a GroupId ;) {{endif}} If you want multiple user groups to see the content: {{if \IPS\Member::loggedIn()->inGroup( array( 1, 2, 3 ) )}} // This content is only visible for GroupId 1, 2 and 3 {{endif}} I hope that I could help you, have a nice day and good luck with your forum.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...