
Solutions
-
Daniel F's post in How is this sent from forum? was marked as the answerYes, this sounds like the Post Before Registering feature.
-
Daniel F's post in Upgrade failed - FORUM DOWN was marked as the answerThis was resolved via the ticket.
-
Daniel F's post in Problem with inability to access developer mode was marked as the answerIs 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 answeryou 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 answerThere 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 answerSounds 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 answerYou could also utilize the solution feature for this.
-
Daniel F's post in DEBUG_TEMPLATES still with issues in forms was marked as the answerI 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 answerTry clearing the cache.
ACP => System => Support
-
Daniel F's post in Sitemap status = Couldn't fetch (Google Search Console) was marked as the answerI'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 answerYes, it’s safe to truncate it
-
Daniel F's post in Disabled login, now can't login :D was marked as the answer
-
Daniel F's post in Sidebar position Bug was marked as the answerWhere 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 answerThe 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 answerWe have fixed this for an upcoming maintenance release.
-
Daniel F's post in Repeated log entries was marked as the answerHi,
this was my debug code which was left accidentally after I was working on your recent ticket with the broken embed code.
I noticed this actually 2 hours ago and removed it, that's why nothing new was logged after 12:58pm
I'mr really sorry for this.
-
Daniel F's post in Embedded topics from my forum no longer show up (in my forum) was marked as the answerOk next to my previous finding, there's also another issue => The original topic was merged into another one, so if you open the link in a new window, it's going to run the proper check and it redirects you to the new topic, but the embed logic is missing this.
-
Daniel F's post in Promoted Items Not Showing in Our Picks Block was marked as the answerYea, this sounds like a bug that I’ll look into today.
-
Daniel F's post in Event Location was marked as the answerRefererNotAllowedMapError
Sounds like you need to review your google maps key restrictions
-
Daniel F's post in Third part hooks issues and can't uninstall the app was marked as the answerCreate a ticket and we’ll remove it for you
-
Daniel F's post in Embedding search results from forum into different website was marked as the answerIt all depends on your setup, how sessions work(if permissions should be respected etc..) and if the results should really be shown on the external site or if it's fine to just redirect to the IPS search results page.
If you need only the results and want to show them on your website, I would suggest utilizing the REST API https://invisioncommunity.com/developers/rest-api?endpoint=core/search/GETindex
-
Daniel F's post in [v5 REQUEST] Implement extension functions more consistently was marked as the answerExtensions will be easier to implement in v5 because there's now an abstract class with all mandatory abstract methods 🙂
-
Daniel F's post in <head> Add On was marked as the answerThere's no need for a 3rd party app!
You can add custom HTML code to the end of the </body> tag by adding it to the footer HTML field.
-
Daniel F's post in [4.7.14] Bug in template core > front > global > siteSocialProfiles was marked as the answerThis was patched yesterday
-
Daniel F's post in Can I pass a variable in the menu? was marked as the answerCan you clarify what you're exactly trying to do?
Are you using a Zapier Interface to generate the form and then you've just linked it in your navbar and you want to make the link dynamic to include the member_id ?
That's probably a bad approach, and if there are critical data or if you have to guarantee that the member who's submitting the form is really the member who's ID was submitted, you'll need a better approach, because literally anybody could open the URL and just adjust the variable.
That said, back to your question:)
You'll either need a custom application with a custom navbar extension to build the dynamic link, or you could use JavaScript to customize the target link and attach the currently logged in member_id