Solutions
-
WP V0RT3X's post in Adding Links in footer area? was marked as the answerhttps://invisionify.com/vortex-development/free-plugins/extra-footer-links-r9/
-
WP V0RT3X's post in Pages Guides was marked as the answerThat sounds very sad @Square Wheels
Feel free to PM me and I will build such a database directly on your site and completely for free.
We can even customize it a little bit if you like to
-
WP V0RT3X's post in Light Dark Invision Core Theme was marked as the answerAt the moment it's only for the AdminCP. IC5 will have a darkmode for the frontend too.
-
WP V0RT3X's post in Error default theme after install Download was marked as the answerDownload the FULL package and upload the unzipped files via FTP to your server. Then start the upgrade in your browser with admin/upgrade
-
WP V0RT3X's post in Bookmark in threads was marked as the answerHi Nigel, check out this one ...
-
WP V0RT3X's post in Rank Icons and Badge Standard Sizes - Achievements was marked as the answerI use 128*128 and it looks pretty good ...
-
WP V0RT3X's post in How to set main menu structure like invisioncommunity.com ? was marked as the answerHi, the easiest way is to edit the templates mobileNavBar and mobileNavigationIcon.
I've got some example code for the navigation icons HERE.
A button tutorial can be found here ...
-
WP V0RT3X's post in Articles with chapters in blog ? was marked as the answerLooks like this one would be perfect ...
Maybe modify it a little bit (Prev/Next Page, move Navigation) and you'll have the same.
-
WP V0RT3X's post in How to use application::allowOfflineAccess? was marked as the answerpublic function allowOfflineAccess( \IPS\Application\Module $module, $controller, $do ) { if ( $module->key == 'imprint' AND $controller == 'imprintpage' ) { return TRUE; } return parent::allowOfflineAccess( $module, $controller, $do ); } I am using this on my Imprint application.
-
WP V0RT3X's post in Menu Navigation / iPad was marked as the answerHi Andreas,
you should switch from submenus to dropdowns. When the submenu bar is empty it's hidden automatically.
And this is how to create dropdowns...
This is what IPS is using, it's all build in.
-
WP V0RT3X's post in Who was online block was marked as the answerThe Who is online block is build in. You can get Who was online here ...
https://invisionify.com/files/file/25-who-was-online-hours/
-
WP V0RT3X's post in Control Club Visibility/Permissions via MemberGroups? was marked as the answerYou can control who has access to the clubs app here ...
-
WP V0RT3X's post in How to hide images in the topic for guests was marked as the answer
-
WP V0RT3X's post in Articles thumbnail required was marked as the answer
-
WP V0RT3X's post in Remove "Start a Club" Button was marked as the answerTry myClubsSidebar.
-
WP V0RT3X's post in How i remove this alert? [System > Plugins] was marked as the answerShould be possible with a theme hook. I use something like that to hide the offline notice in the AdminCP.
-
WP V0RT3X's post in Fontawesome icons in forums titles instead of image icons was marked as the answerDon't add Font Awesome in the forum title, use custom CSS instead...
-
WP V0RT3X's post in How to get the "edit" link back was marked as the answerTry template forums -> topics -> post and insert
{{if $comment->canEdit()}} {{if $comment->mapped('first') and $comment->item()->canEdit()}} <li class='ipsButton_verySmall'><a href='{$comment->item()->url()->setQueryString( 'do', 'edit' )}'>{lang="edit"}</a></li> {{else}} <li class='ipsButton_verySmall'><a href='{$comment->url('edit')}' data-action='editComment'>{lang="edit"}</a></li> {{endif}} {{endif}} before this
<li class='ipsHide' data-role='commentLoading'> <span class='ipsLoading ipsLoading_tiny ipsLoading_noAnim'></span> </li>
-
WP V0RT3X's post in No Option To Set/Upload Logo? was marked as the answerHave you tried to run the support tool?
-
WP V0RT3X's post in Site Logo on 4.5.2 was marked as the answerMaybe this can help you
-
WP V0RT3X's post in sidebar widget was marked as the answer<style> .revolvermaps { background: #000; display: flex; justify-content: center; align-items: center; } </style> <div class="revolvermaps"> <script type="text/javascript" src="//rf.revolvermaps.com/0/0/1.js?i=5kq2jkw49ng&s=220&m=0&v=false&r=false&b=000000&n=false&c=ff0000" async="async"></script> </div>
-
WP V0RT3X's post in Add forum icon image to default skin was marked as the answerQuick and dirty...
.ipsDataItem[data-forumid='2'] .ipsItemStatus.ipsItemStatus_large, .ipsItemStatus:not( .ipsItemStatus_large ) { color: transparent; background: url(https://icons.iconarchive.com/icons/arrioch/halloween/32/devil-icon.png) no-repeat center center; }