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. .ipsTag[data-tag-label="test"]{color:red!important; background:blue;}
  2. The editor won't load after adding a reply as a guest, works only after reloading page. I excluded captcha, adblock, attachments, buttons in the editor and CSS as the cause. Browser: Latest Edge. 123.webm
  3. Hi! Check this out: ;( function($, _, undefined){ "use strict"; ips.controller.register('plugins.globalMessageDismiss', { initialize: function () { this.on( document, 'click', '[data-action="dismiss"]', this.dismiss ); }, dismiss: function (e) { e.preventDefault(); var url = $( e.currentTarget ).attr('href'); var message = $(this.scope); ips.getAjax()(url).done(function(){ ips.utils.anim.go( 'fadeOut', message ); }).fail(function(){ window.location = url; }); } }); }(jQuery, _));
  4. Something that will attract users. I mean chat, quizzes, connections, movies. https://invisioncommunity.com/files/file/8381-quizzes/ https://invisioncommunity.com/files/file/9342-chatbox/ https://invisioncommunity.com/files/file/9693-movies/ https://invisioncommunity.com/files/file/9663-connections/
  5. It seems to me that the biggest problem is that donations cannot be set only for logged in users and do not have any CAPTCHA security. Through site.com/clients/donations/ you can create thousands of pending invoices as guest. Edit: very good decision 👍
  6. Hi. You can use the following query: DELETE FROM `nexus_invoices` WHERE `nexus_invoices`.`i_status` = 'expd' or 'canc'; ref: delete expired or canceled Invoices | Invision Community
  7. Hi Guys. Currently, Invsion Community displays the code for mobile devices using @media screen, which is ok, but it only seemingly hides the code because it is still in the source. Being on the desktop, the code for mobile devices is unnecessarily loaded. Why not use PHP for mobile device detection? This code is just an example, but it shows that it can be done in a simple way. <?php //-- Very simple way $useragent = $_SERVER['HTTP_USER_AGENT']; $iPod = stripos($useragent, "iPod"); $iPad = stripos($useragent, "iPad"); $iPhone = stripos($useragent, "iPhone"); $Android = stripos($useragent, "Android"); $iOS = stripos($useragent, "iOS"); //-- You can add billion devices $DEVICE = ($iPod||$iPad||$iPhone||$Android||$iOS); if (!$DEVICE) { ?> <!-- What you want for all non-mobile devices. Anything with all HTML, PHP, CSS, even full page codes--> <?php }else{ ?> <!-- What you want for all mobile devices. Anything with all HTML, PHP, CSS, even full page codes --> <?php } ?> This would bring many benefits because being on a mobile device (or on a desktop), we would only load the code that is needed, excluding the one that is unnecessary. This would reduce the weight of the html file and improve the speed.
  8. When we log in with Google, the profile picture is imported as 96x96 pixels. I suggest increasing the size because it is definitely too small. $userData = $this->_userData( $link['token_access_token'] ); if ( isset( $userData['picture'] ) and $userData['picture'] ) { return \IPS\Http\Url::external( $userData['picture'] )->setQueryString( 'sz', NULL ); } return NULL;
  9. SeNioR-

    Goals System

    it's not even about posts or topics because there are a lot of goals that could be set.
  10. the title attribute is always ok 🙂
  11. Hi Guys. I have some recommendations on the sitemap. Google ignores the "priority" values so it is redundant, it can be completely removed. reference: https://developers.google.com/search/docs/advanced/sitemaps/build-sitemap The second thing is that the lastmod value only changes to when a new answer is added. Okay, but what if we're editing the first post? e.g. topic title and description? I noticed that lastmod remains the same, so the Google crawler does not revisit this topic to index new content.
  12. SeNioR-

    Goals System

    You can look at it this way, but it would definitely increase user activity. I agree that quality is more important than quantity but it can be both quality and quantity;) Anyway, I suggested a nice idea that will surely sell, maybe some developer will use it 🙂
  13. SeNioR-

    Goals System

    Hi. I was thinking today about "goals", a module that would allow the user to set a goal, eg "write 10 posts today". The module could have a widget in which the progress would be like when getting another badge. There could also be a goal completion counter in the profile These are just preview images but it looks interesting, doesn't it?
  14. I was just wondering because IPS probably has hundreds thousands of topics and only 8,000 are indexed in Google. Why? Is it because of bad SEO or low value content?? Even if some topics are hidden from guests, there should be many more topics in the index. Don't you think? 🤔 PS: I view the results in the incognito window
  15. the bug occurs randomly, because once everything is ok and sometimes it gets stuck. I thought it was because of Cloudflare, but as it turns out, not.
  16. Add this code to your custom.css file: #elSearch { width: 265px; }
  17. Shouldn't such addresses be redirected to the target path? https://invisioncommunity.com/index.php https://invisioncommunity.com/forums/topic/468343-forum-clear-cache-and-advanced-mode-issue (works with slash and without on the end) More in this video 😛
  18. Hi Guys. I noticed a bug when trying to feature a topic written by "Guest".
  19. Pages such as those below should be included in robots.txt, google unnecessarily wastes time on them. https://invisioncommunity.com/pastleaders/ https://invisioncommunity.com/languages/ https://invisioncommunity.com/applications/ (if we set the guest to be unable to download attachments) https://invisioncommunity.com/tags/* (since the tags have noindex, they should be removed for guests or at least a link) /notifications/
  20. Is this type of URL safe? https://invisioncommunity.com/index.php?app=core&module=system&controller=embed&url=https://www.ifixit.com/Guide/Repairing%2BToshiba%2BSatellite%2BC850%2B-%2BCleaning%2Bthe%2BCooling%2B-%2BFan%2BSystem/28853
  21. SeNioR-

    Search UI

    it doesn't look smooth (the list looks depending on the browser) but + for the improvement.
×
×
  • Create New...