-
Posts
6,764 -
Joined
-
Days Won
38
Community Answers
-
Daniel F's post in I can't find the word 'and' to translate was marked as the answer
Ah sorry, it's the _list_format_ string.
-
Daniel F's post in How to limit Zapier integration to a subforum was marked as the answer
You could use functions, paths or filters, see https://community.zapier.com/featured-articles-65/3-ways-to-add-conditions-to-zaps-22333
-
Daniel F's post in My IP Address Banned from my Own Site was marked as the answer
It could have been banned if you made too many requests to the IPS API with a wrong key!
-
Daniel F's post in A question regarding IPS5 and Plugins. was marked as the answer
Yes, that's correct
-
Daniel F's post in Add a file to post with REST was marked as the answer
I'm afraid, only our GraphQL API supports attachments, there's no REST Endpoint for content attachments yet.
-
Daniel F's post in Created User notification on HTTP POST to /api/core/members was marked as the answer
You *could* wrap the constant in a condition checking the path.
Something like
if( $_SERVER['REQUEST_URI'] == '/api/' ) { \define( 'EMAIL_DEBUG_PATH', '/dev/null' ); }
-
Daniel F's post in Who posted as anonymous was marked as the answer
You can set the moderators and their permissions in your ACP on the Members => Moderators page.
-
Daniel F's post in asking topic authors to respond to topic answers was marked as the answer
Our software sends already emails for solved topics.
Make sure that the "Email author to mark a reply as a solution" setting is enabled
-
Daniel F's post in [BUG 4.7.17] Adding form fields to \IPS\Content\Item::commentFormElements() doesn't fully work was marked as the answer
The way how this works in v5 changed completely and this would be some too big changes for v4 so we'll probably close the bug report for now.
-
Daniel F's post in Can't modify some notification settings was marked as the answer
Each notification can be made "not editable" for members by the administrator.
You'll have to review the setting for notifications in your ACP
-
Daniel F's post in How is this sent from forum? was marked as the answer
Yes, this sounds like the Post Before Registering feature.
-
Daniel F's post in Upgrade failed - FORUM DOWN was marked as the answer
This was resolved via the ticket.
-
Daniel F's post in Problem with inability to access developer mode was marked as the answer
Is the DEFAULT_THEME_ID constant overridden in your constants.php ?
If not, have you deleter any of your themes? Please take a look at the themes, is there one with the ID 1? If not, override the DEFAULT_THEME_ID in your constants.php with the ID of your new default theme.
-
Daniel F's post in Use of variables to build internal URLs was marked as the answer
you can get the count of members in a group via \IPS\Member\Group::load(YOURID)->getCount()
So to use it in the template, you'll want something like:
{{$members = \IPS\Member\Group::load(4)->getCount();}}
-
Daniel F's post in Does IPS have native Image Compression? was marked as the answer
There are settings for format specific compression/quality in your ACP => System => Files => Image Settings.
-
Daniel F's post in Impossible access (error 500) after upgrade 4.7.16 was marked as the answer
Sounds like an incompatible php version.
Make sure that you’re using php 8.0.0 or higher
-
Daniel F's post in Automatic prefix for creating a forum post was marked as the answer
You could also utilize the solution feature for this.
-
Daniel F's post in DEBUG_TEMPLATES still with issues in forms was marked as the answer
I have fixed few instances yesterday, the date template was one of them.
-
Daniel F's post in After update to 4.7.16 editor isn't working anymore was marked as the answer
Try clearing the cache.
ACP => System => Support
-
Daniel F's post in Sitemap status = Couldn't fetch (Google Search Console) was marked as the answer
I've seen this on one of my Wordpress sites too.
Try to submit the same URL again.
-
Daniel F's post in Okay to truncate "core_log" table? was marked as the answer
Yes, it’s safe to truncate it
-
Daniel F's post in Sidebar position Bug was marked as the answer
Where are all these weird <strong>tags coming from? Once you remove them, it should work as expected.
Just did a quick test in the browser and it's indeed this...
-
Daniel F's post in Forum down was marked as the answer
The table 'ipb_core_view_updates' is full Sounds like your drive /db drive run out of space
-
Daniel F's post in Can someone help me to sort this Template Error? was marked as the answer
We have fixed this for an upcoming maintenance release.