-
Posts
6,764 -
Joined
-
Days Won
38
Community Answers
-
Daniel F's post in Repeated log entries was marked as the answer
Hi,
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 answer
Ok 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 answer
Yea, this sounds like a bug that I’ll look into today.
-
Daniel F's post in Event Location was marked as the answer
RefererNotAllowedMapError
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 answer
Create 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 answer
It 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 answer
Extensions 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 answer
There'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 answer
This was patched yesterday
-
Daniel F's post in Can I pass a variable in the menu? was marked as the answer
Can 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
-
Daniel F's post in Invision Community API Problem was marked as the answer
How does your request look like?
-
Daniel F's post in Call to undefined function curl_init() was marked as the answer
cURL should work on our cloud.
Just to be sure we get what you're meaning => Are you trying to call this REST API from your CiC community to the same community?
If yes could you share the code, or tell me the block id where you're trying this and I'll take a look at this.
-
Daniel F's post in Icons not showing colour was marked as the answer
Which is correct.
you have read it, so it’s grayed out.
Once your wife creates a new post in this forum, it shouldn’t appear grayed out anymore.
-
Daniel F's post in Create member via Zapier: Custom fields was marked as the answer
Unfortunately our Zapier integration doesn’t support custom fields yet, but you could use the Zapier Webhook feature to send a POST request to your community’s REST API to update the created member.
-
Daniel F's post in Trying to upgrade was marked as the answer
1. Make sure that the mbstring module is installed and available on your server/webspace
http://www.php.net/manual/en/mbstring.installation.php
2. You'll have to uninstall the rules application which hadn't any upgrades since 2019
-
Daniel F's post in How do I get the current forum view method? was marked as the answer
It's also stored in the database, so using the method is probably better
\IPS\forums\Forum::getMemberListView()
-
Daniel F's post in Webhooks don't work (bug?) was marked as the answer
In 4.7.11 which will be released soon™️ was just released
-
Daniel F's post in Dates of less than a week are wrongly represented was marked as the answer
Does it work if you switch to English? IF yes, it's an issue with your German Translation which is probably not compatible with the recent IPS version!
-
Daniel F's post in ip address is the same for all users was marked as the answer
I guess you’re using a proxy which is forwarding all traffic. Make sure to enable IP forwarding
-
Daniel F's post in Translation examples missing in some keys was marked as the answer
No.
I would suggest to ignore the empty strings
-
Daniel F's post in Changing Pages Records' Author was marked as the answer
You can change it in your ACP while editing the record there.
-
Daniel F's post in Zapier Member Edit Trigger - What causes trigger? was marked as the answer
The "Member Edited" trigger is fired when literally anything except when one of these values changes ( 'last_visit','last_activity', 'profilesync_lastsync' )
So yea, your observation is correct. It is also fired when somebody replies because his "total posts" count, last post timestamp, and probably also his achievement points value changed.
We thought that people would use Zapier Conditions once they need more control over the data, that said, we may improve this in the future and include a few filters into the "Member Edited" trigger.
Also, something to keep in mind, is that the webhooks aren't fired immediately.
We have a webhook queue, which collects the data and which is then fired via a separate request ( https://zapier.com/engineering/webhook-design/ leaving this link here for people who are interested in this)
Since you're on a demo that has probably not really that many visitors, the queue is also not running as often as it would on a live board!
-
Daniel F's post in Error when entering the invision community website. was marked as the answer
403 is a no permission error, which is correct because you have no permission to access our admin directory.
-
Daniel F's post in Bug in downloads -> front -> browse -> rows was marked as the answer
Thanks, I have fixed this for an upcoming release.