
Everything posted by Daniel F
-
I can only use the Feature function for posts and not for the first post...
Featured Content in IC5 is almost the same as our picks in IPS4! If you want to allow your members to use it, you can create a new member group, make it a moderator group and allow it only to feature and unfeature content.
-
Friendly number format
You could create a custom block : ACP => Pages => Blocks Chose the Forum Statistics Block and then customize the template <h3 class='ipsWidget__header'>{lang="block_forumStatistics"}</h3> <div class="ipsWidget__content"> <ul class='ipsList ipsList--stats ipsList--stacked ipsList--border ipsList--fill'> <li> <strong class='ipsList__label'>{lang="total_topics"}</strong> <span class='ipsList__value'>{number="$stats['total_topics']" }</span> </li> <li> <strong class='ipsList__label'>{lang="total_posts"}</strong> <span class='ipsList__value'>{number="$stats['total_posts']" }</span> </li> </ul> </div> My only change was the removal of "format="short"" Easy Peasy, isn't it:)
-
Zombie members
The login credentials on file are not working. {!#[1:Имя пользователя или пароль][2:Email адрес или пароль][3:Имя пользователя, email адрес или пароль]} неверны. Пожалуйста, попробуйте ещё раз (убедитесь, что caps lock выключен).
-
IPS 4.7.20 - SendGrid for bulk emails not working anymore
Yes:) @Stuart Silvester has submitted a fix for this today which should be included in our next release.
-
Featured content in Bulk Mails
It was fixed and should be available in our next release.
-
How could a member have posted images in the gallery?
From the create menu probably?
-
IC5: Introduction to Listeners
onCreateOrEdit works here too \IPS\downloads\File::processAfterNewVersion $this->ui( 'formPostSave', array( $values ) ); /* Fire event for listeners */ Event::fire( 'onCreateOrEdit', $this, array( $values ) ); Webhook::fire( 'downloads_new_version', array( $this ) );
-
Error: Class "IPS\Theme\Cache\class_core_front_global" not found
This error usually means that there's an issue with a 3rd party applications template hook. Do you have any 3rd party applications changing anything with the recent profile visitors block? If yes, try to disable them
-
How to 301 a deleted URL?
You could use your htaccess file if you're self hosted, or use a 3rd party application like this one for IC5
-
Default homepage
Set the default application to define the application Set the module which you want as landing page as the default one
-
Notification error for individual member
There's more than that. Under some circumstances the data can also be stored in the core_achievements_log DB table resulting in broken ACP point history pages and achievement rebuilds Error: Call to undefined method IPS\core\Messenger\Message::reacted() (0) #0 /var/www/vhosts/xxx/applications/core/extensions/core/MemberACPProfileBlocks/Points.php(95): IPS\core\extensions\core\AchievementAction\Reaction->logRow() #1 /var/www/vhosts/xxx/system/Helpers/Table/Db.php(473): IPS\core\extensions\core\MemberACPProfileBlocks\Points->IPS\core\extensions\core\MemberACPProfileBlocks\{closure}() #2 /var/www/vhosts/xxx/system/Helpers/Table/Table.php(531): IPS\Helpers\Table\Db->getRows() #3 /var/www/vhosts/xxx/static/templates/core_admin_members.php(2522): IPS\Helpers\Table\Table->__toString() #4 /var/www/vhosts/xxx/system/Theme/SandboxedTemplate.php(68): IPS\Theme\class_core_admin_members->pointsLog() #5 /var/www/vhosts/xxx/applications/core/extensions/core/MemberACPProfileBlocks/Points.php(134): IPS\Theme\SandboxedTemplate->__call() #6 /var/www/vhosts/xxx/applications/core/modules/admin/members/members.php(1406): IPS\core\extensions\core\MemberACPProfileBlocks\Points->edit() #7 /var/www/vhosts/xxx/system/Dispatcher/Controller.php(128): IPS\core\modules\admin\members\members->editBlock() #8 /var/www/vhosts/xxx/system/Dispatcher/Dispatcher.php(169): IPS\Dispatcher\Controller->execute() #9 /var/www/vhosts/xxx/admin/index.php(15): IPS\Dispatcher->run() #10 {main}
-
Upgrade failed
Were there any upgrade issues in the past? Have you restored recently a DB backup of your community?
-
Upgrade failed
-
Notification error for individual member
Because probably only he such a notification:) That said, we've run into another ticket yesterday where such an error appeared ( reactions for reported content comments and reactions for PMs ) so I've spent some time improving our code base to prevent that such errors break "everything".
-
Moderator CP - delete content - error - v5
What was the issue?
-
Invision Community 5.0.1 Released
Yeah, your vkid 3rd party login handler isn't compatible with the current version.
-
Invision Community 5.0.1 Released
Do you see any errors in your system log / server log? From my last days experience it's caused by old v4 applications which have left some deprecated extensions on your filesystem.
-
locked email
You should also be able to unlock it as admin from the users ACP profile page.
-
Google Ad Manager in V5
What's the issue? What have you tried?
-
Subscription Application
Correct and it will continue to work with IC5 after your upgrade! This also means that you can just delete the subscriptions in the applications directory! PRO TIP(Or lazy Daniel who does this almost daily:D ) : If you don't want to deal too much with backups and restoring them, rename the folder to "to-delete-11-2-2024_subscriptions" and wait few days to see if anything is broken on your site (it really shouldn't, but if something broke after the rename, just rename it back) and if not, then feel free to delete it!
-
Subscription Application
This looks just like an old folder which is still on your file system. Commerce is the application which handles this in V4
-
Unable to Reverse Blocked Email in ACP for Member
I have created a ticket to investigate this further.
-
Call to undefined method IPS\arcade\extensions\core\GroupForm\arcade::canDelete() (0)
This was a change in 5.0.0 Beta 10
-
Call to undefined method IPS\arcade\extensions\core\GroupForm\arcade::canDelete() (0)
Changed Status to Not a bug
-
Call to undefined method IPS\arcade\extensions\core\GroupForm\arcade::canDelete() (0)
Your 3rd party applications group extension should extend IPS\Extensions\GroupFormAbstract