Everything posted by Omri Amos
-
Invision Community 5: The all-new editor
No disrespect but that's a stupid weird argument. Alpha testers are extremely tech savvy users, they don't represent the common users in any way.
-
Pasted text background color using themes
I guess you have a custom theme and you need to find the right selector for your comments.
-
Pasted text background color using themes
Of course, that was my intention - a workaround to fix an existing issue. Obviously the real solution is to remove the colors from the original code and never load it to begin with, instead of dynamically removing in on the client side after it has already been added to the page. But this workaround does work, fortunately, in the meantime. just add it to the globalTemplate right before the </body>...
-
Pasted text background color using themes
you can fix it yourself. just add this js code to your template: document.querySelectorAll('div[data-role="commentContent"]').forEach(div => { div.querySelectorAll('*').forEach(element => { element.style.backgroundColor = ''; element.style.color = ''; }); });
-
Classifieds System
thanks, found the product key. and now the link to submit a new support ticket is also working.
-
Classifieds System
when trying to submit a ticket i get redirected to another website, asking me to sign in / register again (already registered on bbcode.it) - https://eidmart.wpninjadevs.com/wp/submit-ticket/ do I need to register to both websites? also, where can I find the product key? I couldn't find it in my email or in the invisioncommunity dashboard (I can see all my orders, the original purchase and all the renews, but it doesn't show a product key)
-
Classifieds System
any updates?
-
Classifieds System
Nevermind, I was able to link my so-called "custom" app to the marketplace item on the db, and then update the app from the marketplace.
-
Classifieds System
How can I update the plugin? The marketplace doesn't letting me install it because "An application is already installed that uses the same Application Key, this application cannot be installed unless the other is removed", and I also can't download an actual file to upload it manually... I don't want to remove the existing installtion and install again because I don't want to risk losing data.
-
forumsTopicPost_delete webhook isn't getting triggered
yeah, all the old tests.. but I did new tests after I changed the settings.. Great! Thank you
-
forumsTopicPost_delete webhook isn't getting triggered
I'm not sure why do you believe it will trigger after 12 hours, when my new-post triggered within a few seconds... this doesn't make sense and is obviously not normal even if in some miracle it will suddenly work after 12 hours... 🤷♂️ I disabled the delayed deletes - my deleted post is permanently deleted, but the hook didn't get triggered. I'm not sure what else to say, I'm pretty sure there's something wrong with this specific hook 🤷♂️
-
forumsTopicPost_delete webhook isn't getting triggered
oh, I actually had no idea "delayed deletes" is a thing! I see now that I have a lot of deleted posts from the last month that I can recover - including all my test posts as well, obviously. So this must be it. (even though this should be addressed in some way.. as the post is indeed deleted as far as the user knows..) I looked around the adminCP settings and changed "Permanently delete content" to "Immediately", and then tested the webhooks again, hoping this time it would work: but it didn't... Now I don't see an option to recover my deleted post (note: it was a post (reply) and not an entire topic), but still no forumsTopicPost_delete webhook got trigger... I updated the Admin CP Access on my account.
-
forumsTopicPost_delete webhook isn't getting triggered
Thanks for the quick reply! I waited about 5 minutes... the forumsTopicPost_create webhook is usually fired within a few seconds (I have a decently busy site). I created a new test post when I started writing this message - and as I'm typing this the forumsTopicPost_create webhook got triggered - after 10-20 seconds 🙂 I have now deleted this post, and started a stopwatch... I will submit this reply in 10 minutes. and.... 10 minutes passed - still no forumsTopicPost_delete triggered. So to answer your questions - over 10 minutes.. while the forumsTopicPost_create webhook gets triggered within seconds.
-
forumsTopicPost_delete webhook isn't getting triggered
Hi, I created 2 webhooks, one for "forumsTopicPost_create" and one for "forumsTopicPost_delete", both pointing to my script that simply logs the request. When I reply to a topic - I can see that the "forumsTopicPost_create" webhook is indeed being triggered, with all the IPS\forums\Topic\Post object data. However, when I delete this comment (not hide, full delete) - the "forumsTopicPost_delete" is NOT triggered. I tested this quite a few times, and waited long enough... it's not triggering. Any ideas?
-
IPS plugin for bypass cache on cookie for Cloudflare Workers
bump