Everything posted by Adriano Faria
-
Can I create a group that does not receive any email?
@Square Wheels https://www.sosinvision.com.br/index.php?/file/310-stop-all-members-email-notifications/
-
Change order of tabs on Article detail page
https://www.sosinvision.com.br/index.php?/file/307-pages-commentsreviews-tab-order/
-
Option to add "top of page" arrow to IPS?
@Joel R
-
Option to add "top of page" arrow to IPS?
https://www.invisioneer.org/files/file/59-back-2-top/
-
how to delete hooks
In my case, were hooks from the outdated app.
-
how to delete hooks
I saw one like this today. Apparently, the user deleted the app folder without uninstalling it and then it shows a couple of “unlinked” hooks in the Support section and the Not Installed App (or something) in the Applications page.
-
how to delete hooks
Most likely they are leftover records in core_hooks table.
-
Club Groupings
It may help: https://www.sosinvision.com.br/index.php?/file/284-clubs-categories/
-
Change order of tabs on Article detail page
I may have a plugin for this matter. Will reply back later.
-
Screenshots out of order when upload a new version to a file
This is added in .15 but it isn't working properly. As you're ordering it by record_time DESC, I have to upload them in reverse order if I want to keep them in a specific order. All the files have the same record_time (1704826851) so it doesn't make any sense to order by time. record_id ASC would be more appropriate.
-
4.7.15 changes
You should add in the Changes affecting third-party developers and designers the new parameter in the \IPS\Node\Model::setLastComment(). This is breaking/locking the apps and crashing the whole board install and requires the immediate attention of the developer.
-
"Let's confirm you are human" challenge issue
- Where is the error if I see in my language %s instead of datas?
The way to fix this is display the lang bit key and compare it with the English. You’ll see your translation isn’t right.- Should be possible to move topics from search result set
You may have missed it but Brandon left IPS a year ago or so.- Add a new field to the user registration form from an application.
You need to add a hook to \IPS\core\modules\front\system\register::buildRegistrationForm(), make your validation and then you can "save" the data via the memberSync extension. public static function buildRegistrationForm( $postBeforeRegister = NULL ) { $form = parent::buildRegistrationForm( $postBeforeRegister ); //add your fields return $form; }- Enable "Recent Profile Visitors" by default?
There's a topic somewhere here on IPS with a manual query. I tried to find but I couldn't... try it. Keyword: view_sigs.- Enable "Recent Profile Visitors" by default?
Nope, you'll have to run a query in your database or hire someone to make a quick app to loop through your member's table and change the value. Let me know if you want me to make it for you.- I forgot how ModCP works
Add the group or members as Moderators in the ACP.- HTML code to tell if someone is logged in?
Not sure what you mean with header but this is an example: {{if member.member_id}}I'm a user{{else}}I'm a guest{{endif}}- Live pages to guest users
Oh, he is CiC; I didn't pay attention to that. Good to know it can be handled by a constant. 👍- Live pages to guest users
Not tested but you can change it in your install if you're self-hosted by editing the init.php file: $guestTimeout = 900;- Auto follow topics
… and if you also want to new members follow specific forums/topics, you can use this: https://www.sosinvision.com.br/index.php?/file/50-auto-follow-content/- Use of theme setting in theme setting conditional logic field
There are 2 errors there and I told you yesterday.- User marked as Spammer still shows "About me" spam in profile
It should. It isn’t. That’s what I meant.- User marked as Spammer still shows "About me" spam in profile
The profile is visible and accessible to anyone. You’ll have to edit their profile to remove the information you judge spam. - Where is the error if I see in my language %s instead of datas?