Skocz do zawartości

NewsBot

Moderator
  • Postów

    9 017
  • Dołączył

  • Ostatnia wizyta

  • Wygrane w rankingu

    26

Treść opublikowana przez NewsBot

  1. In line with our aim to make incremental improvements in each release, I wanted to go over a few of the small but useful changes to the personal messenger that you'll find in our next release, 4.1.13. Read/unread filtering The first improvement is that you can now filter the message list by read and unread, making it a little easier to browse through just the messages you're interested in. Search improvements Next up, the messenger search has been improved in a couple of ways; first, you can now also search the names of both the recipients and the senders, and second, we've added a menu so you can specify which fields in particular you want to search by. Easier moving Finally, we've added a popular request - the ability to use the mass-move tool inside the messenger. You can now check multiple messages, and the usual mass-action toolbar will appear that will allow you either move them to another folder, or, has been the case in the past, delete them. While these are each small improvements by themselves, we hope the incremental changes in each release add up to a more pleasant experience for users. View the full article
  2. Zeron - is a unique style of play, executed in a very pleasant dark tones with a large number of settings Full Screen: Home Page, Calendar, Downloads, Blogs, Pages Also in the archive are present: Logo PSD Skin Images (10 custom backgrounds) Support Topic Click here for demo! Notice: If You need to install style on Your forum, but You can't do that, write me in personal messages. If You find a bug in the style, at once write us in PM or in the Support Topic and I'll correct it. MetaTags: Gaming style for IPS 4, Modern style for IPS 4, Beautiful style for ips4. FAQ: Q: How to make backgrounds for this style ? A: If You like the style, then check out my other work View the full article
  3. Our Pages CMS is one of our most popular applications as we are continuing to improve it based on feedback. New in 4.1.13 includes: Designer’s Mode HTML Editing This update allows you to edit your HTML mode pages inside the designer's mode file system. Any edits you make, once saved in your text editor are instantly available which makes it much faster to build HTML pages with Pages. Database Template Improvements We listened to a lot of feedback about templating within the AdminCP for Pages and one common request was for a way to delete a group of database templates and to rename those groups. When you import databases, the template group names are created unique but you may want to change this to something more memorable. You will see here that the dialog also shows you which databases this template is used. Page titles when using databases Currently, when you add a database to a page, the page title is replaced with the database name. This may not always be desirable, and you may want the page title to remain in all database URLs (such as record view). There is now an option for this per database. Relational Field Improvements Now when you create a relational link between databases, you can opt to show which records link to the relational record. To give you an example, say you had a database for actors, and a database for movies, and you created a link on the actors record to show which movies they star in; now when viewing the movie, it will show you a list of the actors. More Filterable Fields We added both "Date" and "YesNo" field types to be filterable when viewing a list of records. When you use the Date type, you can select a date range for listing articles. We also added the ability to use any custom field set as filterable to be used when creating a database feed widget. Unique Fields Another popular request was to allow a way to force unique entries for custom fields. This means that when enabled, only one record per database can have the same value. This is enabled when creating or editing a field. Other improvements You can now quickly delete an entire media folder via the AdminCP. You can now quickly see which databases are used on which pages via the AdminCP page list. And we added a way to programatically fetch a custom field value via the $record object. Currently, you need to use something like $record->field_12 which works well until you import that database to another installation. The fields are renumbered so this syntax no longer works. We made it possible to use the field key like so $record->field_my_key. Not only does this solve the issue when importing databases, it is also much more readable and easier to remember! View the full article
  4. Often when you are reading a topic, comments, or other posts, you will see team members replying. Although IPS Community Suite already allows groups to set up custom images and member titles, these replies can get lost in the noise. Version 4.1.13 now allows you to switch on post highlighting per member group. This makes sure the reply stands out from the rest of the replies. Of course, this feature works everywhere; from calendar comments to article replies. The feature is switched on via the Group form in the ACP. You can edit the look of the highlighting via the theme’s settings which allows for different color schemed per-theme. We have also ensured that theme designers can get the most out of the system by embedding a data attribute noting the group of the author. This means that you can add custom CSS to use different colours per member group. We think post highlighting will be a simple way to bring attention to member posts in groups that you define. View the full article
  5. Here are 10 prestige medals that we use within our own community using the iAwards system - perfect for creating a prestige system integrating posts, length of membership, member -of the month. How you implement them is up to you. View the full article
  6. This plugin will display topics with no replies in a sidebar widget with the following settings: Number of topics Groups Permissions Forums to pull topics from Topics ordering (Desc, Asc, Random). View the full article
  7. In IPS4, it's easy to add custom icons to your forums, simply by uploading them on the Edit Forum screen in the AdminCP. But if you want to replace all of your forum icons, uploading the same icon for each forum can be a bit tedious. It's easy to use some custom CSS to replace all of the icons - lets see how. First, you'll want to upload the image(s) you want to use to the Resources section of your theme so that it can be used in your CSS. To start with, we'll use the same image for both read and unread status, but we'll cover using a different icon for both too. The basics Here's the basic CSS to replace the icon for all forums with your custom image: body[data-pageapp="forums"] .cForumRow .ipsItemStatus.ipsItemStatus_large { width: 50px; height: 50px; border-radius: 0; background-color: transparent; background-image: url('{resource="mushroom.png" app="core" location="front"}'); background-size: 50px 50px; } body[data-pageapp="forums"] .cForumRow .ipsItemStatus.ipsItemStatus_large > i { display: none; } What we're doing here is specifically targeting the item status icons in the forums app, using the body[data-pageapp="forums"] selector. Within this style, we're setting the size of the icon - I've chosen 50px here which is about right in most cases, although you can change this if desired. Next we reset the border radius and background color so the icon looks right. And finally, we set the background image to our icon by using the {resource} tag and the background size to the same dimensions we just set the element to. The next style hides the FontAwesome icon that IPS4 inserts by default, so that our icon can be seen. Using a different 'read' icon By default, your icon will be faded out for 'read' icons, but it's easy to use a completely different icon if you wish. Simply add: body[data-pageapp="forums"] .cForumRow .ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read { background-image: url('{resource="mushroom_faded.png" app="core" location="front"}'); } All we're doing here is using a more specific selector with .ipsItemStatus_read so that only the 'read' state is targeted. In the style, we specify the background image - we don't need to set and reset the other rules again because the styles we wrote in the first step are inherited. Using different icons for redirect or Q&A forums If you want to add icons specifically for redirect or Q&A forums, you can do that by targeting unique classes that are added to the icons for those kinds of forums. Those classes are .cForumIcon_redirect and .cForumIcon_answers, respectively. So, to use a custom icon for a Q&A forum, you would add another style like so: body[data-pageapp="forums"] .cForumRow .cForumIcon_answers.ipsItemStatus.ipsItemStatus_large { background-image: url('{resource="question.png" app="core" location="front"}'); } Notice we've added .cForumIcon_answers to our selector. View the full article
  8. Forum Rank Badges - by GFXBYSMITTY Ranks Include: ADMIN MODERATOR VIP MEMBER DONATOR MEMBER View the full article
  9. This plugin displays custom profile field groups as dropdowns in author info pane, with the opportunity to exclude any group fields. It will convert this: Into this: View the full article
  10. Bell is stunning and beautiful with a guest message overlapping the header. 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. Social Media Position You can put the social media on the subheader or the main footer. 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. 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 header. Font Awesome Icon Statues (Unicode) Input your own Font Awesome icon into the forums. Guest Message You will get a guest message on the forums index page of consisting of a title and a short paragraph of what's possible when your guest creates an account. Guest Message Background Color/Image You can either choose a plain background color or put your own image on the guest message. 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]. View the full article
  11. Simple plugin that changes the behaviour of a forum topic title link so that it goes to the first unread post rather than the first post in the topic. At the moment this is a global change but it could be done on a per-user basis if there is sufficient interest. View the full article
  12. A skin I used for a medevil theme forum. Updated to Version4.1x Installation instructions. 1 ). ADMIN CP - CUSTOMIZATION - THEMES - ADD THEMES - UPLOAD THEMES 2 ). CLICK BROWSE- (THEME).XML FROM YOUR COMPUTER 3 ). CLICK NEXT 4 ). WAIT FOR PROCESSING AND THEN THE THEME IS INSTALLED. [Copyright Notice] You are allowed to use this skin free of charge. You are not allowed to sell the skin or make profit directly from the skin. You are not allowed to remove the copyright notice at the footer of the page or edit it in any way. You do have the right to edit any logo files and profile images. You do not have the right to redistribute this skin set in any way. Please respect my wishes by simply keeping the copyright intact and I will continue to release my skins. View the full article
  13. Bulk import all your IP.pages to WordPress! How does pages import work? This WordPress plugin will read the IPS.pages data from you IPS installation and import these articles into WordPress. This will even work with different servers or IPS hosted communities. Import will be performed automatically on chunks á 25 records - there is no record limit. If you decide to continue the import later or your browser or computer crashes, you don't need to start from the beginning - the import tool remembers current state and allows you to continue from there. Categories from IP.pages will be created and mapped in WordPress while import for posts. Featured Images from IP.pages will be imported as Features Images into WordPress. SEO friendly 301 redirects will be generated in htaccess and nginx formats. If your members from IPS are already imported to WordPress, e.g. via User Import Script, imported articles will be assigned to correct author. Creation dates are transfered, too, to have them in correct chronological order. Comments will be imported and created as WP comments for the posts. Requirements IPBWI for WordPress v4 WordPress 4.5 or higher IPcore/IP.board 4.1 or higher PHP 5.5, PHP 5.6 & PHP 7 Installation / Configuration unzip download package on your local harddrive copy folder ipbwi4wp_pages_import to /wp-content/plugins/ active plugin in WordPress go to IPBWI4WP -> Pages Import settings menu page follow further instructions there Attention: this is an addon for and will not work if you are not using latest version of IPBWI for WordPress v4. This plugin also benefits from Follow IPBWI IP.board WordPress SSO on Facebook and Twitter! View the full article
  14. The plugin adds the button to easily return to top of page. It is slightly modified plugin (SB) BacktoTop by @Incarnia: • changed color and position of button; • fixed translation. Translation key is BacktoTop_title. Enjoy! View the full article
  15. Plugin adds informational message above the editor. Coming soon: new application which allows you to create custom messages in different forums. Github https://github.com/FmWebStudio/IPS-Editor-Message View the full article
  16. Gives your members the opportunity to auto-embed documents, spreadsheets or presentations from Google Docs. Usage instructions are included in the ZIP file. Feel free to share this PDF with your members View the full article
  17. Requirements IPBWI for WordPress v4 WordPress 4.5 or higher IPcore/IP.board 4.1 or higher PHP 5.5, PHP 5.6 & PHP 7 How does user import exactly work? This WordPress plugin will read the user data from you IPS installation and import these users to WordPress. This will even work with different servers or IPS hosted communities. You'll be able to map IP.board user groups to WordPress roles to set them correctly upon import. Import will be performed automatically on chunks á 25 members - there is no member limit. If you decide to continue the import later or your browser or computer crashes, you don't need to start from the beginning - the import tool remembers current state and allows you to continue from there. Support for WordPress Multi Site Add users to current site of your WP network or to all of them. If you may create new multi sites in future after initial user import, just re-run this script to add all users from IPS to all new sites. Installation / Configuration unzip download package on your local harddrive copy folder ipbwi4wp_user_import to /wp-content/plugins/ active plugin in WordPress go to IPBWI4WP -> User Import settings menu page follow further instructions there Attention: this is an addon for and will not work if you are not using latest version of IPBWI for WordPress v4. View the full article
  18. Plugin (inw) Hide Sidebar allow members to hide/show sidebar on your community. In plugin settings you can select users, who can hide sidebar. View the full article
  19. Links Directory is an application that provides your community with a member driven web directory. Allow members to submit websites for approval in categories you define. Users can comment and rate on other member’s submissions. You can also mark websites as official affiliates, fostering traffic between friends. Features Submit links to websites along with a title, description, and an image generated from extensible APIs: Sneak.pw, WebThumbnail, Thumbshots (requires an API Key) and Upload field. You can also save the image locally, which will reduce the API call. Image is updated when you update the link. Admin can choose if new links are moderated, per category. Submit comments to links. Admin can choose if new comments are moderated, per category. Rate links using the star rating system used throughout the IPS4. Per category setting. Integrates to Share Links to share or email inks. Ability for users to report potentially offensive content or broken links using the built-in Report Center Search integration: search links along with the rest of your community’s content Supports item marking, allowing your users to see what links have been added or commented on Integrates into Activity Streams. Supports the built-in tagging system including prefixes. Support for notifications such as new links and comments on user links. Ability to follow/like categories and individual links. Unlimited categories of links, plus unlimited depth of parent-child relationships Category Icons Drag & drop reordering of categories in the ACP. Per-category permissions to show category, view links, submit links, add comments, and avoid approval queues Provide “link back” code so other websites can link back to yours. Mark links as official affiliates and display them in a different section on the Links Directory index Integrates into IPS4 Moderating system, which all commons permissions, such as pin, unpin, delete, feature, move, etc. Per-category Permissions allowing you to specify which permission sets are allowed to view category, view links, add links, edit links, comment, rate, and avoid moderation at a granular level. Robust Admin Restrictions. Integration with the Advertisements system Integration with Sitemap system to include links in your sitemap Ability to create RSS feeds of all links Integration with ACP Live Seach (Links categories) Support Extra Fields so you can define different fields per category Friendly URLs for links and categories Ability to configure the Links Index page to display the blocks you want And much, much more! Notes Each purchase entitles you to use of Links on one Community installation. Upgrade tested only from versions 4.1.1 and 4.1.0. So if you're using an older version, update to 4.1.X first. View the full article
  20. This release fixes a single issue where bulk mails may send duplicates, especially on sites with multiple languages. Wyświetl pełną treść wpisu
  21. This release fixes a single issue where bulk mails may send duplicates, especially on sites with multiple languages. Wyświetl pełną treść wpisu
  22. Replace your one logo with random logos on page load. Group logos for different themes and member groups. Keep up to date with DevFuse mod development and releases. Features: Setup random logos on page load. Group logos that display on different themes. Group logos that display to different member groups. Set an override URL for each individual logo. Set custom alt text for each logo image. Use logos dimensions or fixed dimensions when displaying. View the full article
  23. This plugin allows each member to set cover photo height for their own profile. This setting placed in "Account Settings". In plugin settings (ACP) administrators can set max and min height of covers. View the full article
  24. It allows you to display sections of the moderators in the forums list. What are the standard permissions ? Rights moderated forums IPS4 issued within the framework of the issuance of common rights moderation Community (ACP: Members - Staff - Moderators). Therefore, if you specify as a forum moderator user who is not yet a moderator , it will automatically be given moderator privileges to access limitations specified in the " Permissions " . In the future, change permissions made in the ACP: Members - Staff - Moderators for a user or group as a whole. Позволяет выводить модераторов разделов в списке форумов. Зачем нужны стандартные права доступа? Права на модерацию форумов в IPS4 выдаются в рамках выдачи общих прав модерации сообщества (ACP: Members - Staff - Moderators). Поэтому, если вы указываете в качестве модератора форума пользователя, который модератором еще не является, ему будут автоматически выдани права модератора с ограничениями доступа, указанными в меню "Права доступа". В будущем изменение прав доступа производится в ACP: Members - Staff - Moderators для пользователя или группы целиком. View the full article
  25. With this application, you can include the imposition of a watermark on all attached images uploaded to the editor posts in any application. Settings: ACP - Community - Watermarks - Settings Ready to hear any suggestions to improve this application. View the full article
×
×
  • 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ę.