Jump to content
  • Sign Up

The Grim Reaper

Expert
  • Posts

    411
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by The Grim Reaper

  1. Version 2.0.0

    4 downloads

    Shows which members have won the most reputation or likes over the last few days. Block settings: Number of leaders to show The block will appear if: Reputation is enabled Leaderboard is enabled The member who's browsing has permission in the leaderboard module
  2. This tutorial is to change the default display of the subforums from rowlist into column list. Greetings to Split for releasing it. Add the following code into the custom.css and replace "x" with the number of columns you want to be displayed. .ipsSubList li { float: left; width: calc(100% / X - 5px); } @media screen and (max-width: 979px) { .ipsSubList li { width: calc(100% / X - 5px); } } .ipsSubList a { width: max-content; } Simple example for 3 columns style. .ipsSubList li { float: left; width: calc(100% / 3 - 5px); } @media screen and (max-width: 979px) { .ipsSubList li { width: calc(100% / 3 - 5px); } } .ipsSubList a { width: max-content; }
  3. You don`t need to much experience. For WordPress you need an adult theme and some plugins you have to adjust for you thing.
  4. Well, there isn`t to much magic behind it, what you showed are custom CMS but you can make it within normal all use ones like : WordPress, Joomla via custom plugins for it.
  5. What is the error you get, the screenshot is not working
  6. Usually you can get away with a VPS or a VDS or by searching in other countries different from yours, if your stuck with just dedicated shared web hosting, you can use uploads by external link such as mega or mediafire and just posting the link to the resources.
  7. I'm sorry to be against your host provider, but that is a problem from them. You have limited resources on your host plan, meaning that if overload the system will shut you down in order not to affect the others. As i saw on international hosting, most of them offer limited resources regarding traffic, ram, cpu.
  8. It depends where you got the nulled version, some nullers are know to leave small back dors.
  9. What is the point of your question ? That option is both on nulled or retail version. Yes, is a basic function to see what admins have logged and are connected, you also have detailed logs about it.
  10. try with the default IPS theme and look if there works, if it works on the default theme, the problem is from other theme.
  11. Activate this into your category settings :
  12. I don`t understand why you create a new topic when i've already told you that this plugin is discontinued since 4.5 Is not receiving any update, got to the end of life.
  13. Hello, the plugin is no longer available, the creator left invision and does not maintain his plugins.
  14. Version 4.7.15

    59 downloads

    Deflection is a clean, dark IPS theme with a soothing colour scheme. The header can be configured with background images if preferred, which can be controlled even further with the background picker enabled. This theme is built on a modern framework with minimal HTML modifications, which means it'll upgrade easily (and usually automatically) between IPS versions. This template version works starting from to 4.7.15 to current released version.
  15. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  16. The Grim Reaper

    Question Donated

    I believe he is referring to the fact that on the donation page appear a list of tiers to you get for the amount of donation you make. From there the reason why the started the topic. ( https://webflake.dev/forums/donations/ )
  17. First of all, this section is for WebFlake related problems, not for web problems. Second, yes, it is possible but you will need to have a good knowledge of php for creating and integrating the script as a custom one into your forum.
  18. You can`t, that theme is for 3.4.x, will not work on 4.x. You need to find someone that will remake the template on the current IPS version.
  19. You are using a custom postContainer, post here the code inside postContainer
  20. You can try this, is made to work for 4.7 : https://webflake.dev/forums/files/file/6452-wf-large-avatars/
  21. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  22. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  23. Hello, if you need a plugin, create a request topic in this section : https://webflake.dev/forums/forum/167-invision-requests/
  24. Hello, i'm sorry for this delayed response of mine. Search for this into your template forum - index - forum and replace this : {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline"> {{foreach $forum->children() as $subforum}} <li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}"> <a href="{$subforum->url()}">{{if \IPS\forums\Topic::containerUnread( $subforum )}}<span class='ipsItemStatus ipsItemStatus_tiny {{if !\IPS\forums\Topic::containerUnread( $subforum ) && !$subforum->redirect_on}}ipsItemStatus_read{{endif}}'><i class="fa fa-circle"></i></span>&nbsp;{{endif}}{$subforum->_title}</a> </li> {{endforeach}} </ul> {{endif}} {{if $forum->description}} {template="richText" group="global" app="core" location="global" params="$forum->description, array('ipsDataItem_meta', 'ipsContained')"} {{endif}} With this : {{if $forum->description}} {template="richText" group="global" app="core" location="global" params="$forum->description, array('ipsDataItem_meta', 'ipsContained')"} {{endif}} {{if $forum->hasChildren()}} <ul class="ipsDataItem_subList ipsList_inline"> {{foreach $forum->children() as $subforum}} <li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}"> <a href="{$subforum->url()}">{$subforum->_title}</a> </li> {{endforeach}} </ul> {{endif}} Add into your custom.css this : .ipsApp .cForumRow .ipsDataItem_subList { padding: 0 !important; background-image: none !important; display: grid; grid-template-columns: repeat(3, 33%); } .ipsApp .cForumRow .ipsDataItem_subList li:after { content: ''; font-family: "FontAwesome"; /* here you put what you want to appear before a subforum */ } .ipsApp .cForumRow .ipsDataItem_subList li.ipsDataItem_unread:after { content: ''; font-family: "FontAwesome"; /* here you put what you want to appear before an unread subforum */ } .ipsDataItem_subList li a:after { content: ''; }
×
×
  • Create New...