Everything posted by sobrenome
-
Instagram Login Handler
Anyone using Instagram login handler?
-
Webp attachment - cache issue
Will thumbnails be resized to a new webp file? I mean, if a webp image is uploaded the system will create a webp thumbnail from it?
-
Webp attachment - cache issue
-
Improving search results
It depends on your content. Post your settings and describe how are the usual topics on your community. You can give more importance to fresh content or not. Higher ranking to titles or not. And make the inicial search for a phase using all words or search for each one individually.
-
Improving user status in hovercard
Add a follow button!
-
Improving search results
Have you tried elastic search?
-
Improvements for the app Gallery
Any good news about gallery new features and refresh look?
-
Elasticsearch Version 7 & IPB?
Can we use the latest elastic search version already?
-
Video Gallery: Compression, Thumbnails & Player
Any news about this? The system could be integrated with Amazon aws or cloudflare. Very very needed features for my community!
-
Wiki-like-editing is useless at this moment
Please take some time to make wiki a usable feature with moderation. I want to use it so much! But without moderation spam can take over and destroy great content.
-
Hump Day: 4.6.0 soft launch 🤫
Any noticeable speed gains? How is it scoring on PageSpeed Insigths?
-
Invision Community 4.6.0 Beta 1 is live!
Are the latest versions of REDIS and ELASTIC SEARCH supported by 4.6?
-
Mail Bouncer - Automated Bounce Management
I had the same issue. The message should not be something went wrong, but you need to renew the app license!
-
Introducing Invision Community's new developer Matt F!
-
Instagram Login Handler
Is Instagram still accepting logins? I tried to update my Instagram Login Handler that was not working anymore and I saw this message on Facebook Developers:
-
How to send private message
How could I set the $pmSender as the same as receiver $member? I have tried: public function messageMembersSend( $member, $subject, $content ) { /* Setup pm title and msg */ $msgTitle = $subject; $msgPost = $content; \IPS\Member::load( $member )->language()->parseOutputForDisplay( $msgTitle ); \IPS\Member::load( $member )->language()->parseOutputForDisplay( $msgPost ); /* Set the receiver */ try { $member = \IPS\Member::load( $member ); } catch( \OutOfRangeException $ex ) { return; } /* Set pm sender */ try { $pmSender = \IPS\Member::load( $member ); } catch( \OutOfRangeException $ex ) { return; } /* Valid sender? */ if( !$pmSender->member_id ) { return; } /* Create conversation */ $conversation = \IPS\core\Messenger\Conversation::createItem( $pmSender, $pmSender->ip_address, \IPS\DateTime::ts( time() ) ); $conversation->title = $msgTitle; $conversation->to_member_id = $member->member_id; $conversation->save(); /* Add message */ $message = \IPS\core\Messenger\Message::create( $conversation, $msgPost, TRUE, NULL, NULL, $pmSender ); $conversation->first_msg_id = $message->id; $conversation->save(); /* Authorize everyone */ $conversation->authorize( $member ); $conversation->authorize( $pmSender ); /* Send notification */ $notification = new \IPS\Notification( \IPS\Application::load('core'), 'private_message_added', $conversation, array( $conversation, $pmSender ) ); $notification->send(); } But I get an error: 4C124/6 Illegal offset type in isset or empty I am trying to send an error message to myself on a plugin.
-
Cron Jobs for Maintenance
Nice! I will learn and build! First doubt: plugin or app for just some tasks?
-
Cron Jobs for Maintenance
Can custom task methods be added?
-
Font Awesome 6
I like fast!! I have been begging for a faster IPS with less JavaScript and less CSS burden and maybe font awesome 6 could also be added to the light speed petition!
-
WhatsApp - Site Promotion - Sharing
-
WhatsApp Share Button for 4.5
No working plugin until now for 4.5. IPS should consider a built in WhatsApp sharing button.
-
WhatsApp Share Service - Supporttopic
-
Suggestions for improvement on Schema.org tags for Pages
Any news about this feature?
-
Pages SuperBlocks (Support Topic)
Sorry about that. I will ask for it on feature suggestions. Thanks!
-
Pages SuperBlocks (Support Topic)
For topic feed, superblocks are coded like this: removed Image thumbnail and actual image are the same: {{$items[$counter]['image']= $firstPhoto;}} {{$items[$counter]['image_thumb']= $firstPhoto;}} Is there a way to show the thumbnail on superblocks topic feed?