Jump to content

SeNioR-

Members
  • Posts

    1,156
  • Joined

  • Days Won

    5

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by SeNioR-

  1. This will be fixed in an upcoming update 👍
  2. Go to index/forumRow find & remove {{if $lastPost AND ( $forum->can_view_others OR \IPS\Member::loggedIn()->modPermission('can_read_all_topics') OR ( \is_array( \IPS\Member::loggedIn()->modPermission('forums') ) AND \in_array( $forum->_id, \IPS\Member::loggedIn()->modPermission('forums') ) ))}} <dl> {{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}} <dt class="ipsDataItem_stats_number">{number="$count" format="short"}</dt> <dd class="ipsDataItem_stats_type ipsType_light">{lang="posts_no_number" pluralize="$count" format="short"}</dd> </dl> {{endif}}
  3. Hi kmk. Try it, it should work 🙂 #elMobileBreadcrumb{display:none!important;}
  4. Try Recovery Mode. #\define( 'RECOVERY_MODE', TRUE ); Check how to Use constants.php
  5. Hi bpn. You can do it like this: li.ipsDataItem:nth-child(odd) { background-color: red; } Preview:
  6. Hi! See the documentation ips.ui.menu. Example code: <ul class="ipsList_inline ipsPos_right ipsResponsive_hidePhone"> <li><a href="https://google.com" id="elMyMenu_item1">Item 1</a></li> <li><a href="#" data-ipsmenu id="elMyMenu_item2">Item 2 with dropdown <i class="fa fa-angle-down"></i></a> <ul class="ipsMenu ipsMenu_auto ipsHide" id="elMyMenu_item2_menu"> <li class="ipsMenu_item"><a href="https://google.com">Item 3</a></li> <li class="ipsMenu_item"><a href="https://google.com">Item 4</a></li> </ul> </li> </ul>
  7. Hi! It looks like the documentation has a minor error. This option has been moved to Members --> MEMBER SETTINGS --> Referrals
  8. Hi, Ramsesx. Maybe you just need to center the button? Try it 🙂 html[dir="ltr"] #ipsMultiQuoter { right:unset; left:50%; }
  9. There is an "Invoices" section in ACP in Customer View. Do you mean the public profile? {{if $member->modPermission() or $member->isAdmin()}} Code visible to moderators or admins {{endif}}
  10. Hi gaby. If a forum does not have the "Solving" option turned on, the counter will not be shown in the topic. Community --> Forums --> Display Settings --> Enable Solved?
  11. Check that the forums_posts table characters were converted in the correct way. If so, it is the server's fault. Yes definitely. Server character encoding should be set to UTF-8 Unicode (utf8mb4).
  12. It seems to me that it is not so easy to add this option to ACP because it is a CKEditor plugin. If you want to change the default code syntax highlighting, try going to applications\core\interface\ckeditor\ckeditor\plugins\ipscode\plugin.js Open plugin.js find \x26lang\x3dhtml and change the \x26lang\x3dhtml suffix to css or lua or something else. e.g. \x26lang\x3dcss \x26lang\x3dpython I have not tested this method, so I do not guarantee that it will work.
  13. Hi. The minimum requirements are included in the ips4.php file (Invision Community Requirements Checker) and in requirements Minimum PHP 7.2.0 MySQL: 5..5.3 Recommended PHP 7.4.0 MySQL: 5.6.2
  14. The description should not be set the same for each page, that's why IPS didn't add a meta description tag on other pages, it's only on the first page (main). Google itself can choose the most valuable description for each page from user posts, and it does. From an SEO point of view, this is the better solution.
  15. Bump! 🙂 In these two years, the sitemap has been improved a bit. Let me know if you have better results in the search engine.
  16. Of course it would be possible with a plugin. We have already discussed this here: Add in conf_global 'offline_group' => n°X
  17. For me, the "Back" button works the same as before. Try to change display mode to "Full screen" ACP > Customization > Icons & Logos > Display mode
  18. The picture of this guy is probably taken from the avatar. Adding og:image via ACP's tag editor should fix the problem. <meta property="og:image" content="link_to_your_logo_or_image" /> More here: Open Graph Markup
  19. Why is the Q&A Challenge for guests still not added? If captcha has been added then Q&A should also 🙂 Can we expect it in the near future? Thanks. system\Content\Item.php (public static function formElements) if ( !\IPS\Member::loggedIn()->member_id ) { //ADD Q&A $question = FALSE; try { $question = \IPS\Db::i()->select( '*', 'core_question_and_answer', NULL, "RAND()" )->first(); } catch ( \UnderflowException $e ) {} $return['qagp'] = new \IPS\Helpers\Form\Text( 'qagp', NULL, TRUE, array(), function( $val ) { $qanda = intval( \IPS\Request::i()->qagp_id ); $pass = true; if( $qanda ) { try { $question = \IPS\Db::i()->select( '*', 'core_question_and_answer', array( 'qa_id=?', $qanda ) )->first(); } catch( \UnderflowException $e ) { throw new \DomainException( 'qagp_incorrect' ); } $answers = json_decode( $question['qa_answers'] ); if( $answers ) { $answers = is_array( $answers ) ? $answers : array( $answers ); $pass = FALSE; foreach( $answers as $answer ) { $answer = trim( $answer ); if( mb_strlen( $answer ) AND mb_strtolower( $answer ) == mb_strtolower( $val ) ) { $pass = TRUE; } } } } else { $questions = \IPS\Db::i()->select( 'count(*)', 'core_question_and_answer', 'qa_id > 0' )->first(); if( $questions ) { $pass = FALSE; } } if( !$pass ) { throw new \DomainException( 'qagp_incorrect' ); } } ); \IPS\Member::loggedIn()->language()->words['qagp'] = \IPS\Member::loggedIn()->language()->addToStack( 'core_question_and_answer_' . $question['qa_id'], FALSE ); }
  20. I remember that someone made such a plugin. Edit. Here it is Highlight Posts Per User Group but I agree, it's nice to have it built in.
  21. Unfortunately, bfarber is no longer in the team and the error has probably been forgotten. However, it is worth taking a look at.
  22. Yes you can move to the Feature Suggestion forum, Thanks. P.S. Weird, I didn't get a notification that you answered, even though I am following the topic, and the list does not even show that someone replied. Bug or Cache? 🙂
  23. Hi, there is some way to let guests see their own topics that are pending approval? For example, if our forum requires accepting new topics and we add a new topic as a guest, after adding it, topic does not display in the forum view, which can be confusing and some people may think that the topic has not been added. Yes, there is a note at the top but not everyone sees it.
×
×
  • Create New...