Advertisement
Leaderboard
-
in all areas
- All areas
- Ideas
- Ideas comments
- Positions
- Position Comments
- Position Reviews
- Blog Entries
- Blog Comments
- Bugs
- Bug Comments
- Bug Reviews
- Features
- Feature Comments
- Feature Reviews
- Suggestions
- Suggestion Comments
- Suggestion Reviews
- Releases
- Release Comments
- Release Reviews
- FAQs
- FAQ Comments
- FAQ Reviews
- Files
- File Comments
- File Reviews
- Topics
- Posts
- Status Updates
- Status Replies
-
Custom Date
-
All time
February 14 2013 - February 27 2025
-
Year
February 27 2024 - February 27 2025
-
Month
January 27 2025 - February 27 2025
-
Week
February 20 2025 - February 27 2025
-
Today
February 27 2025
-
Custom Date
04/02/2016 - 04/02/2016
-
All time
Popular Content
Showing content with the highest reputation on 04/02/2016 in all areas
-
Version 1.1.0
44 downloads
Don't be a leech, click the reputation button if you want to get more files in the future. Will show the user's member id to Admin and Mods in the post screen underneath "Post Count". Features: Custom CSS class for your own stying Automatically hidden in "Phone" view of the responsive design Uses it's own customizable language string for "Member ID" Follows uniformity of IPS' fields Template in Themes for better editing1 point -
1 point
-
1 point
-
Version 1.0.4
40 downloads
Don't be a leech, click the reputation button if you want to get more files in the future. This plugin allows administrators to feature individual members.Members can be featured/unfeatured from the ACP, the public profile, or the user hovercard.Featured Members are displayed in a sidebar widget that can be added to any page.1 point -
Version 1.1.2
237 downloads
EasyPopup is a small app to help you create the modal popups for your site. Some features: Width/Height for your popup. Transition open/close: FadeIn/FadeOut, SlideIn, SlideUp, SlideDown, SlideBack. Transition speed. Background color. HTML content or upload image. Auto close and show timer on popup. Showing popups every page loads or every X minutes. Waiting for X miliseconds to show. Easy to determine URL where to show popups.1 point -
Version 3.4.8
2,300 downloads
Forum software for thriving discussions. IP. Board is the leading solution for creating an engaging discussion forum on the web. Trusted by thousands of forums, large and small. PROPER NOTES: We have detected problem in: admin/applications/members/extensions/enhancements/mandrill.php This is now corrected. Credits: ECHO1 point -
Hello everyone , glad i have found the forum and hope to learn a lot from it Thanks DroidMan1 point
-
You mean so?? Look at _base.css and change this with this Code @media screen and (min-width:768px){ /* Avatar */ .cAuthorPane_info .ipsUserPhoto_large img, .cAuthorPane_info img.ipsUserPhoto_large{ /*width: {theme="topicAvatarSize"}px; height: {theme="topicAvatarSize"}px;*/ width: 150px; height: 300px; {{if theme.rounded_photos}}border-radius: 50%;{{endif}} }1 point
-
1 point
-
1 point
-
Go to " ckeditor.css ". Search at this Line: .cke_skin_ips *, .cke_skin_ips a:hover, .cke_skin_ips a:link, .cke_skin_ips a:visited, .cke_skin_ips a:active { color:#000 !important; } and change the color: .cke_skin_ips *, .cke_skin_ips a:hover, .cke_skin_ips a:link, .cke_skin_ips a:visited, .cke_skin_ips a:active { color:#444 !important; }1 point
-
Insert the following code in custom. css .ipsPos_left.ipsPad.cProfileHeader_name { margin-left: 19px; margin-top: 132px; } Follow Member and message I cannot see as a guest from there know I whether these must not be also changed1 point
-
beta 6: init.php change public static function checkLicenseKey( $val, $url ) { $test = FALSE; if ( mb_substr( $val, -12 ) === '-TESTINSTALL' ) { $test = TRUE; $val = mb_substr( $val, 0, -12 ); } $urlKey = $test ? 'test_url' : 'url'; try { $response = IPSHttpUrl::ips( 'license/' . $val )->setQueryString( $urlKey, $url )->request()->get(); switch ( $response->httpResponseCode ) { case 200: $response = json_decode( $response, TRUE ); if ( $response['legacy'] ) { throw new DomainException( 'license_key_legacy' ); } /* Previously, URL's were stored as http://domain.com/forums - this check here may throw a "key already in use" error if upgrading or setting up a test install */ if ( rtrim( $response[ $urlKey ], '/' ) !== rtrim( $url, '/' ) ) { if ( $response[ $urlKey ] ) { throw new DomainException( $test ? 'license_key_test_active' : 'license_key_active' ); } else { IPSHttpUrl::ips( 'license/' . $val )->request()->post( array( $urlKey => $url ) ); } } break; case 404: throw new DomainException( 'license_key_not_found' ); default: throw new DomainException( 'license_server_error' ); } } catch ( IPSHttpRequestException $e ) { throw new DomainException( 'license_server_error' ); } }to public static function checkLicenseKey( $val, $url ) { /*$test = FALSE; if ( mb_substr( $val, -12 ) === '-TESTINSTALL' ) { $test = TRUE; $val = mb_substr( $val, 0, -12 ); } $urlKey = $test ? 'test_url' : 'url'; try { $response = IPSHttpUrl::ips( 'license/' . $val )->setQueryString( $urlKey, $url )->request()->get(); switch ( $response->httpResponseCode ) { case 200: $response = json_decode( $response, TRUE ); if ( $response['legacy'] ) { throw new DomainException( 'license_key_legacy' ); } /* Previously, URL's were stored as http://domain.com/forums - this check here may throw a "key already in use" error if upgrading or setting up a test install if ( rtrim( $response[ $urlKey ], '/' ) !== rtrim( $url, '/' ) ) { if ( $response[ $urlKey ] ) { throw new DomainException( $test ? 'license_key_test_active' : 'license_key_active' ); } else { IPSHttpUrl::ips( 'license/' . $val )->request()->post( array( $urlKey => $url ) ); } } break; case 404: throw new DomainException( 'license_key_not_found' ); default: throw new DomainException( 'license_server_error' ); } } catch ( IPSHttpRequestException $e ) { throw new DomainException( 'license_server_error' ); }*/ }systemOutputOutput.phpchange public function licenseKeyWarning() { if ( !IPSSettings::i()->ipb_reg_number and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'none'; } else { $licenseKey = IPSIPS::licenseKey(); if ( ( $licenseKey === NULL or ( isset( $licenseKey['legacy'] ) and $licenseKey['legacy'] ) ) and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'none'; } elseif ( ( ( $licenseKey['expires'] and strtotime( $licenseKey['expires'] ) < time() ) or ! isset( $licenseKey['active'] ) or !$licenseKey['active'] ) and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'expired'; } } return NULL; }to public function licenseKeyWarning() { /*if ( !IPSSettings::i()->ipb_reg_number and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'none'; } else { $licenseKey = IPSIPS::licenseKey(); if ( ( $licenseKey === NULL or ( isset( $licenseKey['legacy'] ) and $licenseKey['legacy'] ) ) and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'none'; } elseif ( ( ( $licenseKey['expires'] and strtotime( $licenseKey['expires'] ) < time() ) or ! isset( $licenseKey['active'] ) or !$licenseKey['active'] ) and IPSMember::loggedIn()->hasAcpRestriction( 'core', 'settings', 'licensekey_manage' ) ) { return 'expired'; } }*/ return NULL; }1 point
-
Version 3.0.0
320 downloads
[b]Ability to collect and use a set of avatars and use different avatar for each post.[/b] [b]Just take a look at screenshot.[/b] [b]To install:[/b] [b]- copy contents of upload folder to your forum root[/b] [b]- import hook[/b] [b]- configure hook at "System settings > Hooks > (RI) MultiAvatars"[/b] [b]Features:[/b] [b]- different avatar for each post[/b] [b]- collection of avatars[/b] [b]- configurable restrictions[/b] [b]- all actions are ajax-based[/b] [b]- easy moderation tool[/b]-1 points -
-1 points
-
-1 points