Skocz do zawartości

NewsBot

Moderator
  • Postów

    9 017
  • Dołączył

  • Ostatnia wizyta

  • Wygrane w rankingu

    26

Treść opublikowana przez NewsBot

  1. This plugin will make all links over your community act like a rainbow when link is hovered. Demo: Sorry for demo poor quality IPB3.2+ Version: https://invisionpower.com/files/file/6534-zoz-rainbow-links/ Pobierz plik
  2. Primex low price For All User Settings set Background Image Body set Guest Message You will get a Guest Message consisting of a title and a short paragraph of whats possible when your guest creates an account. set sliders set Description For sliders set Links set Images set Mega Footer A mega footer with configurable column numbers and content can be enabled and customized all within the theme settings. Live Demo If you wanna see a live demo of all of our themes, please go to the official forums (http://www.ipbhero.com/). Then scroll down until see the ‘Theme’ link. Click that and it will drop down with the themes . beautiful Theme For All User very low price Pobierz plik
  3. Poly (aka Polygon) has the body and the header. Poly standouts by the orange and the green beautifully. Settings Wanna get more than just a theme? ThemeTree has settings that could transform your forum to an even more beautiful and stunning look. Google Font Choose your own font to be display everywhere on your forum. Google Font Weight Put more styles into the new font you chose to be display everywhere on your forum. Width Container Change the width to your own liking. Subheader: Social Media On the subheader, you will get social icons. Enable Sticky Navigation When you enable this, the header will be sticky when you hit the height. Enable Grid Sublist This will make the forum subcategories break on the left and on the right. Enable Navigation Icons Enabling this setting will put an icon next to the navigation links. Default icons include Forums, Gallery, Blogs, Calendar, Downloads, Store, Activity, Chat, and Online Users. Go here to find out how to put your own icon into your custom menus. Override Site Title Spice up your site title by putting in the title you want to be display on the sidebar. Enable Slogan You will get a slogan next to your site title/logo telling about your site. Font Awesome Icon Statues (Unicode) Input your own Font Awesome icon into the forums. Guest Message You will get a Guest Message consisting of a title and a short paragraph of what's possible when your guest creates an account. Enable Secondary Footer For extra storage we made a secondary footer so you can store more stuff on the bottom of the page. Secondary Footer: About Us Also on the secondary footer, we made an about us section so you can describe your site and your users interests. Appearance You will get settings of changing the default colors to your own liking. And Much More! Test Account Wanna look more into our themes? Well, now ThemeTree supports a test account for all of our themes. So no more looking at those screenshots or even looking at our themes live. Login to the test account and browse the contents. Display Name: TestAccount123 Password: testyaccount123 Live Demo If you wanna see a live demo of all of our themes, please go to the official forums (http://www.themetree.net/forums/). Then scroll down until see the ‘Theme’ link. Click that and it will drop down with the themes (4.x themes). Don't Miss out on ThemeTree Updates and News: ThemeTree (http://www.themetree.net) - You can get more news and updates from our website. Dribbble (https://dribbble.com/Themetree) - Find out our upcoming themes and shots from Dribbble. Contact us at [email protected]. Pobierz plik
  4. This plugin will set rules designed to enhance member's account security by encouraging users to employ strong passwords and use them properly. Policies: Requires at least one uppercase letter Requires at least one lowercase letter Requires at least one number Requires at least one special character Minimum password length How it works? NEW MEMBERS: It will force new users to use your password policies when creating new account. EXISTING MEMBERS: they will be able to continue signing in on your board. The will be required to use the policies when they change their passwords. Where it will be used? In all places where MEMBERS'S PASSWORDS are handled by users or Admins: Register screen Accont Settings -> Password Reset password (remember password) Admin CP: Member profile -> change Password Admin CP: Change Details (from the admin user) New Features to Come (30-45 days to implement): REMINDER: This plugin will have a REMINDER where users will be required to change their passwords in a time frame set by the Admin ENFORCEMENT: Enforce users to change their passwords: users won't be able to use your board until they change their password HISTORY: Users won't be able to use passwords already used on last X password changes. This plugin will cost US$ 15.00 when all features are included. Meanwhile, it has 50% discount. Pobierz plik
  5. This plugin will allow users to receive/give tips. Settings: Who can tip? - Select which groups will be able to tip other users Who can receive tips? - Select which groups will be able to receive tips from other users Pobierz plik
  6. Displays recent topics in board index with nice jQuery effect. The widget has the following features: - Select user groups that can view recent topics. - Select number of topics to tick. - which forums to pull data from. Demo: This is an initial release, it's supposed to have more enhancements depending on your feedback and suggestions. 3.4 free release here Pobierz plik
  7. Recently, we had a post in our pre-sales forum that asked how to achieve a few different things with Pages. One of the questions asked was if it was possible to show topics from a particular forum in each database record. While Pages can create a topic for each record for you, there's no way to associate an entire forum with a record. In my reply, I indicate that you'd need to have a forum ID stored with each record in a custom field, and then use PHP to interact with our API to pull the topic list. As it turns out, however, there's an easier way that I discovered after some experimentation. In hindsight it's obvious, but I want to share it here because it could open up some other interesting possibilities with some creative uses. Setting up blocks The first thing we need to do is create our blocks. We're going to create a block for each of our forums. You can set whatever parameters you want here, but the important thing is that they're named consistently using the forum ID. So, for my forum ID 2, I've named the block forum_2. This will allow us to include our blocks later. Creating one of the blocks we'll need Adding the field Next we'll need to create a field in our Pages database that will be used to set the forum ID that is going to show in each record. For simplicity, I'm creating a Number field and I'll enter the forum ID manually, but if you wanted to go further, you could create a Select Box field, with the key being each forum and the value being the name. This would give you a friendlier input from which to select the forum for each record. Here, though, I've just created the Number field, and named it Forum ID. Setting up the database field Using the field formatter to show the correct block Finally, we'll use the Field Formatting options to show the correct block based on the forum ID entered for each record. On the Display Options tab, I'm going to hide the field from the listing template, but show it on the display template. I've selected Custom as the format, then entered this format: {{if $formValue}} {block="forum_{$formValue}"} {{endif}} That's it - that's all you need for this to work. It's very simple. All we're doing is passing the $formValue of the field (which is the raw value) into the {block} tag as a variable, so that the block that is rendered depends on this value. As long as a block exists with the correct key, it'll be shown in the display view: End result, with the correct block pulled in based on the ID we provided to the record Going further So, given that we know we can use variables in block names to pull in different content (providing the block has been created ahead of time), what other possibilities are there? For starters, we aren't just restricted to using field formatters. Instead, we could use blocks directly in the database templates, using some of the data available there. Here's one idea - if you have just a few staff members posting records, you could create a block for each staff member that lists their recent posts, status updates, etc. In your database template, you could include the correct block by doing this: {block="content_for_{$record->author()->member_id}"} I hope this relatively simple approach gives you some ideas for more creative ways to use blocks. If you have any suggestions for other ways to use this approach, please let us know in the comments! View the full article
  8. Special introductory price for 1.x clients and those eagerly awaiting this release! This app will obtain data from Steam for your users and place it in your IPS Community database for use anywhere on your site. Your board will re-load your members Steam Online information, in configurable batches, every 2 minutes, so you always have up to date information without impacting load times of your community pages. Out of the box, this app will display steam information in the following places Member Profile Next to Members' posts Member Hovercards (Steam Online Status only) Widget: X Random Online Steam Members displayed anywhere you can place a Widget More detailed information about the members Steam profile is displayed on the Members Profile page. Including an optional list of games the member owns. Out of the box the list of games can be shown in either an image grid layout, or list view. This app integrates seamlessly with Lavo's Sign in through Steam.. It will automatically detect if it is installed and pull that users Steam information. Don't have Lavo's sign in installed? No problem, this app works with a Custom Profile field also. Want to use both a custom profile field AND Lavo's hook? Not a problem, this app seamlessly pulls information from both locations to create a single list of users to pull information. Valid Steam Input format for Custom Profile Field: Steam Name: ex. ' Aiwa ' 17 digit Steam ID: ex. 76561197964468370 Old school Steam ID: ex. STEAM_0:0:2101321 If there are any other places you'd like to see a users steam information displayed, let me know! Scales seamlessly to work with larger boards without impacting site / server performance. IP.Board 3.4.x version available here. Pobierz plik
  9. Works with the latest versions of these applications: IP.Board 4.1.x Admin Control Panel IP.Commerce IP.Pages IP.Downloads IP.Gallery IP.Blog IP.Calendar IP.Chat Chatbox Included in the download: Skin XML file for installation All fonts used throughout the skin logo.psd team-icon.psd IBTheme copyright and license agreement Admin CP is themed to match forums Pobierz plik
  10. This theme is full of jellyfishes floating... and attempt to escape from corners makes Use the test account to see everything. Test user: Test_IPS4 Password: test_IPS4 Visit test installation here Pobierz plik
  11. This plugin will remove the word "Forums" from forums index IF the Forums app is the default app of your suite. Note: All plugins are made and tested only on default IPS4 theme. There are themes that the designer chose to put a border on that DIV. If that's your case, the border will still be there. This plugin removes the WORD, not the DIV. Pobierz plik
  12. This plugin will help you speed up the task of adding moderators to IPS4 by duplicating permissions quickly and easily. Pobierz plik
  13. This is my very first plugin and shows member number & join date and adds titles to each in the AuthorPane area of post There is a 'short' and 'long' version (both .xml files) Short version removes the 'pips' and name above the member photo and the 'long' keeps those in (see screenies) Template and .css file imported with plugin and changes can be made to either Please read the custom_fields_instructions.txt so you know what to add to your custom fields to make look same Change from this (the original default view): to either this (short): or this (long): Pobierz plik
  14. Traduzione in italiano della parte base (core), del forum, dei blog e di varie estensioni aggiuntive, tra le quali: Account deactivation Groups (collab) Company directory Pobierz plik
  15. This plugin allows assigning customized and personal group formats for your members! Rewarding or distinguishing members, using their group format, shouldn't immediately imply creating a new member group. Instead, using this plugin, you can simply edit a member's name color/format directly from the ACP. Demo video: More personal group customization: Customize personal member group display even further using the Custom Group Name plugin! Pobierz plik
  16. Now you can make your community run on IPS4.1 with the old look of IPS3.2... This skin supports all IPS4.1 functions dressed in IPS3.2. [Mainly developed according to client request] Suggestions and feedback are more than welcome. For live preview: www.4ipb.com/forums/ Pobierz plik
  17. This plugin will give admins the ability to add or remove followers from forums/categories across the suite. Tested on: Forums Calendars Downloads categories Gallery albums A few 3rd party apps, like Tutorials, Videos System, etc. Note: General rule: it has to work with any app that uses Categories. Not compatible with Pages. It will be in a further version. Pobierz plik
  18. 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 helpful attributes that IPS4 adds to the body element, and then build a CSS selector around them. There's four attributes, and they always reference the current page the user is on: data-pageApp - The application key (e.g. core, forums, cms etc.) data-pageModule - The current module with the application (e.g. pages) data-pageController - The current controller within the module (e.g. topic, page etc.) data-pageLocation - Either admin or front. So let's say we want to change how the .ipsPageHeader element looks within topic view. Our selector would look like this: body[data-pageapp="forums"][data-pagemodule="forums"][data-pagecontroller="topic"] .ipsPageHeader { ...your styles } If you don't want to be that specific, you can just use the attributes you need. For example, if you want to change all .ipsPageHeader styles in the Forums app, you'd do: body[data-pageapp="forums"] .ipsPageHeader { ...your styles } Tip: If you don't know the correct app/module/controller for the page you're on, you can find out by visiting the page and then viewing the page source. You'll see these attributes in the body tag near the top. And as always, be sure you add your CSS to custom.css to keep your upgrades easy This theme tip is taken from our guides section. View the full article
  19. Plugin adds the ability to submit messages by ctrl+enter. Github page https://github.com/FmWebStudio/IPS-Submit-By-Ctrl-Enter Pobierz plik
  20. Plugin allows you to see the details of the picture in the gallery as a magnifying glass. Github page https://github.com/FmWebStudio/IPS-Zoom-Image Pobierz plik
  21. Compass is beautiful and clean that has touch of blue and green. Settings Wanna get more than just a theme? ThemeTree has settings that could transform your forum to an even more beautiful and stunning look. Google Font Choose your own font to be display everywhere on your forum. Google Font Weight Put more styles into the new font you chose to be display everywhere on your forum. Width Container Change the width to your own liking. Header Background Choose a background for your header or just a simple color. Header: Social Media On the header, you will get social icons. Enable Grid Sublist This will make the forum subcategories break on the left and on the right. Override Site Title Spice up your site title by putting in the title you want to be display on the sidebar. Font Awesome Icon Statues (Unicode) Input your own Font Awesome icon into the forums. Guest Message You will get a Guest Message consisting of a title and a short paragraph of what's possible when your guest creates an account. Enable Secondary Footer For extra storage we made a secondary footer so you can store more stuff on the bottom of the page. Secondary Footer: About Us Also on the secondary footer, we made an about us section so you can describe your site and your users interests. Appearance You will get settings of changing the default colors to your own liking. And Much More! Test Account Wanna look more into our themes? Well, now ThemeTree supports a test account for all of our themes. So no more looking at those screenshots or even looking at our themes live. Login to the test account and browse the contents. Display Name: TestAccount123 Password: testyaccount123 Live Demo If you wanna see a live demo of all of our themes, please go to the official forums (http://www.themetree.net/forums/). Then scroll down until see the ‘Theme’ link. Click that and it will drop down with the themes (4.x themes). Don't Miss out on ThemeTree Updates and News: ThemeTree (http://www.themetree.net) - You can get more news and updates from our website. Dribbble (https://dribbble.com/Themetree) - Find out our upcoming themes and shots from Dribbble. Contact us at [email protected]. Pobierz plik
  22. Glass glowed - Forum Rankbars I modify max 5 of them for free with a PM request. Pobierz plik
  23. Drops Forum Rankbars I modify max 5 of them for free with a PM request. Pobierz plik
  24. BOXIFY for IPS.Suite 4.1.x BOXIFY is the most beautiful for your forums low price Settings we have some settings that could transform your forum to an even more beautiful, and stunning look. SET Background Body Image Enable Slogan You will get a slogan right beside your site title/logo telling about your site. Guest Message You will get a Guest Message consisting of a title and a short paragraph of what's possible when your guest creates an account. Header Slider Set 6 Image for Background Header Social Media On the secondary footer, you will get social media consisting with Font Awesome icons. Enable Back To Top button Mega Footer A mega footer can be enabled and customized all within the theme settings. Live Demo If you wanna see a live demo of all of our themes, please go to the official forums (http://www.ipbhero.com/). Then scroll down until see the ‘Theme’ link. Click that and it will drop down with the themes . Pobierz plik
  25. Allows members to add videos to new and existing topics. Included options for manually entering a support media url, integration with the Videos application or adding a placeholder image until a video is ready. Features: Add any media url that IPB4 current supports. e.g. Youtube, Vimeo, Vine Select existing videos from the Videos application when installed. Add a placeholder image in place of a video. Select which forums will support topic videos. Select which member groups can both view videos and also add/edit topic videos. Enable/disable place holder images as well as restricting what file extensions and the maximum image dimensions. Optionally set a maximum video width dimensions. Keep up to date with DevFuse mod development and releases. Pobierz plik
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.