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
01/30/2019 - 01/30/2019
-
All time
Popular Content
Showing content with the highest reputation on 01/30/2019 in all areas
-
5 points
-
Version 2.0.0
414 downloads
Profile Songs is originally a 4.1.x plugin developed by Rory Soh from the IPS Marketplace. It's been abandoned for nearly a year so I've taken the liberty of updating the plugin. Original File Description This allows you to set a custom song to the forum profile. Moderators and Administrators are allowed to remove them easily, it will erase the file from your web server as well. You simply just go to the member's profile who has an inappropriate song and remove it by selecting "Remove Song" from Profile Song option. You can also set profile songs for members if you wish. What's New 4.3.x compatibility, no template changes needed. Any changes you made to your profile template for this plugin should be reverted. NEW configurable profile song size setting. Song size is in kB (kilobytes). A minimum size of 1,000 (1MB or 1 Megabyte) and a maximum size of 50,000 (50MB). This setting defaults to 2,500 (or 2.5MB). Future Updates I'll do my best to update this plugin for 4.4.x compatibility, if necessary, in a timely fashion. I'd also like to implement a configurable volume setting. In the meantime, you can use the steps below to add your own volume setting manually. Add your own volume setting Locate your ps_display HTML template and replace this: <div class='ipsType_center'> <p> {{if \IPS\Settings::i()->song_display_autoplay}} <audio autoplay="" controls="" loop="" preload="" class="ps_audio"> <source src="{$profileSong->file->url}"></source> </audio> {{else}} <audio controls="" loop="" preload="" class="ps_audio"> <source src="{$profileSong->file->url}"></source> </audio> {{endif}} </p> </div> With this: <div class='ipsType_center'> <p> {{if \IPS\Settings::i()->song_display_autoplay}} <audio autoplay="" controls="" loop="" preload="" class="ps_audio" id="profilesong"> <source src="{$profileSong->file->url}"></source> </audio> {{else}} <audio controls="" loop="" preload="" class="ps_audio" id="profilesong"> <source src="{$profileSong->file->url}"></source> </audio> {{endif}} </p> </div> And then add the following code to the bottom of that template: <script> var audio = document.getElementById("profilesong"); audio.volume = 0.25; </script> You can change the volume setting by changing the 0.25 (1.0 is default).5 points -
Thank you, @davlin, you persuaded me, so I'm not going to create this system. At first I thought it was a good idea.2 points
-
1 point
-
1 point
-
1 point
-
i see some members are asking the question how to speed up there website i will give the basics! first things first you will not get your website 100% perfect that would take lots of time and money to hire some professional to do so here is a simple way to make your site run smooth with a few things to add to your .htaccess file in the root of your domain ! for Leverage browser caching add <IfModule mod_expires.c> ExpiresActive On # Images ExpiresByType image/jpeg "access plus 1 year" ExpiresByType image/gif "access plus 1 year" ExpiresByType image/png "access plus 1 year" ExpiresByType image/webp "access plus 1 year" ExpiresByType image/svg+xml "access plus 1 year" ExpiresByType image/x-icon "access plus 1 year" # Video ExpiresByType video/mp4 "access plus 1 year" ExpiresByType video/mpeg "access plus 1 year" # CSS, JavaScript ExpiresByType text/css "access plus 1 month" ExpiresByType text/javascript "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" # Others ExpiresByType application/pdf "access plus 1 month" ExpiresByType application/x-shockwave-flash "access plus 1 month" </IfModule> avoid bad request witch its telling you that you ether dont have your file in the right section of your host witch look for the solution go here>>>>website test you will find where the issues are. Serve scaled images server scaled images its because you might not have the right dimensions like an image might be 500 x 300 witch it would need to be corrected use the link below to optimize your images it may be a pain to do but it will save you the time of having to ask someone how to improve images how to do this the right way go to your cpanle and look for images and that will help you out Optimize images avoid http 404 nt found error this means that you removed the image or file or you just have it in the rung place check your host to find it Enable compression via .htaccess some members have asked th question how to enable compress for this add <ifModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file .(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image/.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </ifModule> add expires headers htaccess some of you may have this issue so use the codes below to fix that <IfModule mod_expires.c> ExpiresActive on # Perhaps better to whitelist expires rules? Perhaps. ExpiresDefault "access plus 1 month" # Data ExpiresByType text/xml "access plus 0 seconds" ExpiresByType application/xml "access plus 0 seconds" ExpiresByType application/json "access plus 0 seconds" # Favicon (cannot be renamed) ExpiresByType image/x-icon "access plus 1 week" # Media: images, video, audio ExpiresByType image/gif "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType video/ogg "access plus 1 month" ExpiresByType audio/ogg "access plus 1 month" ExpiresByType video/mp4 "access plus 1 month" ExpiresByType video/webm "access plus 1 month" # Webfonts ExpiresByType application/x-font-ttf "access plus 1 month" ExpiresByType font/opentype "access plus 1 month" ExpiresByType application/x-font-woff "access plus 1 month" ExpiresByType image/svg+xml "access plus 1 month" ExpiresByType application/vnd.ms-fontobject "access plus 1 month" # CSS and JavaScript ExpiresByType text/css "access plus 1 year" ExpiresByType application/javascript "access plus 1 year" </IfModule> just do this and some of your issues will be less of a headache!1 point
-
Since your original question has been answered, a Best Answer has been marked. If you have another question, please make another post. Thank you.1 point
-
Thanks for this, will be very helpful.1 point
-
if you dont know how to deleting your cache there ar 1001 book out there to help you1 point
-
165 downloads
Musicbox 3.1.1IPB version: 4.3.x | Demo link: https://invisioncommunity.com/files/file/8071-musicbox/ MusicBox is an application for IPS 4.x that allows users to upload their music online and share them to social networks. Demo: https://demo.ipsviet.com/Features: Upload your music. Create playlists. Genres (categories) for songs, playlists. Custom Fields: create any number of custom fields that can be required (or optional) when users upload songs. Integrated with Nexus so users can sell/buy songs. Profile page for artist with rating system. Favorite system: users can create custom playlists. Music player supports random, repeat mode. Play music when embedding the link in other apps (Forums, Pages, Blogs,...). RSS feed, import songs from rss feed. Comment system. Rating system. Sharing system. Friendly URL.1 point -
Version 1.0.0
530 downloads
Today i am going to present you, the theme which i have been working for many days, to make it the best release till date from our Studio , "Tesla Dark".Flat Desire has been best till date in terms of design and sales, and thanks all for making it a huge success. Many requested a darker version of Flat'Desire theme which i dont want to make as Flat Desire is very unique theme.But i want to satisfy all the users, started off from scratch and make this new release from our studio "Tesla Dark".Please dont ask why i kept that name, i was reading a lot of books about Nikola Tesla, who really inspired me in the past few months and as a tribute i just kept his name.Features :So quickly into the features :This Theme has many new features which were never previously tried by me and i wish you guys would love them too.1. Font Awesome Icons Replacing 90% MyBB Images : This i have to explain as i have literally made all possible icons integrated into MyBB system that took many days of work.- All On/ Off icons, Thread Status Icons, Usercp, Modcp , Showthread, Postbit etc are replaced by font awesome icons.2. Flat Dark Clean UI/UX design.3. CSS3 Main Menu & jQuery Dropdown menus, Options Panel in show thread and threadlist.4. CSS3 Animations for icons and links.5. Modal Boxes.6. CSS3 Postbit, Threadlist, Showthread Buttons.7. Custom User Profiles.8. Custom Editor.9. Custom SIdebar with Rotating Banners.10. Tabbed Statistics.11. Custom footer design with Social Links.12. jQuery Expanding Search Bar, Anouncements. etc. and lots more...1 point -
To change the width of the author panel (the left column in every post with the author's avatar, username, etc), add the following to custom.css and adjust the 200pxvalue. :root{ --author-pane-width: 200px; }1 point
-
Christmas lights for any Website Script install just follow this link also you don't need the resize just ignore it link to Christmas lights https://codepen.io/chrisdoble/pen/ZbmOXO CSS Edits to make the lights work 100% with any Website Script install are as follows body { align-items: center; background-color: #ebeced; <- Remove this line display: flex; justify-content: center; } .christmasLights { animation: flash 2s step-start infinite; border-image-repeat: round; border-image-slice: 50% 0; border-style: solid; width: 90%; <- Change from 90% to auto for mobile }1 point
-
Very glad for this. Thank you very much for standing out of the crowd and asserting a moral approach.1 point
-
Previously, users were required to post at least once every six months to ensure their accounts remained in good standing (e.g. "active"). In an effort to encourage activity with some tough love, the following mechanics are now being used: Inactivity Policy only applies to Newbies, Members, and Advanced Members Accounts that were created 30 or more days ago and have not posted in 30 or more days will be marked inactive. Content count is not considered. Whether you have 0 posts or 49, you're subject to this rule. To further clarify: if you create an account and don't post at all within 30 days, you'll be marked inactive. Even if you're logging in daily and downloading files. To remove yourself from the Inactive Members group, you only need to post once. Please do not spam with "thanks", "welcome", or other useless nonsense. Your account will just be flagged as a spammer. We're evaluating our options for improving this feature. Inactive Members have several restrictions placed on their accounts: Cannot view or download files. 300 second flood control (as opposed to 30 for Members). Cannot create profile status updates. A maximum of 1 PM can be sent per day, with a stored quota of 1 and a maximum of 10 stored notifications. New Threads: restricted to Off-topic Lounge, Member Introductions, and the Tutorials/Support areas for IPS, XenForo, and WordPress. Replies: restricted to Off-topic Lounge, Member Introductions, and the Support areas for IPS, XenForo, and WordPress. We understand that life sometimes gets in the way of hobbies, so please do not presume that if you are demoted to Inactive Member that this is some sort of blemish on your record. You can continue posting in most forums, including our support forums. The current setup is just a first pass and is subject to change; it currently does not delete any account from this website (as opposed to the old MIM system on 3.4).1 point