WordPlus | dennis | Activity https://www.wordplus.org/members/dennis/activity/ Activity feed for dennis. Fri, 18 Apr 2025 05:20:19 +0200 https://buddypress.org/?v= en-US 30 hourly 2 219870de53c3d4420acf64ada3b4fedb dennis started the topic Remove numbers of users in the chat / change video chat group in progress messag in the forum BP Better Messages https://www.wordplus.org/forums/topic/remove-numbers-of-users-in-the-chat-change-video-chat-group-in-progress-messag/ Fri, 24 Nov 2023 10:35:16 +0200 Hi,

Would like to make couple of changes in the chat group functionality to improve adoption.

1. video chat active, “Join…” button styling is different, doesnt seem to respond to any settings in the theme (Oceanwp). How to change the color of the button?
2. In a chatroom, it mentioned the number of users in the chat and the number online,…Read more

]]>
379d8e6c4a5093d82aa186c91d679d71 dennis started the topic Guest login not working -> what am I doing wrong in the forum BP Better Messages https://www.wordplus.org/forums/topic/guest-login-not-working-what-am-i-doing-wrong/ Fri, 10 Nov 2023 19:09:23 +0200 Hi,

Got guest access enabled on the socket version, nice dialog to login, register or guest login is shown, however when i enter a random guest name my cursor changes to forbidden when i press continue.

Any ideas?

]]>
20a2fefdc23452cc9c6bec8020207eae dennis replied to the topic Charge Mycred points per minute in the forum BP Better Messages https://www.wordplus.org/forums/topic/charge-mycred-points-per-minute/#post-19560 Thu, 23 Mar 2023 19:48:31 +0200 Would it be possible to allow negative mycred charge? like to reward users for using the chat!

]]>
5ba81e31e8a362e7ff69b8bebc33ed92 dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19559 Thu, 23 Mar 2023 19:46:22 +0200 Hi,

See that there is already API provisioning in the source, why isn’t there documentation? Is it for internal use?

]]>
b2746ba1ba84c6126dbdf27c41a8d608 dennis replied to the topic external img url preview? in the forum BP Better Messages https://www.wordplus.org/forums/topic/external-img-url-preview/#post-19543 Sat, 11 Mar 2023 13:00:36 +0200 Hi,
Curious what issue you see, isnt it like oEmbed for pictures? Could you give me a hint where to implement, on my own risk ofc?

]]>
7da78b96334fa2c25bad9537d89f751b dennis started the topic external img url preview? in the forum BP Better Messages https://www.wordplus.org/forums/topic/external-img-url-preview/ Fri, 10 Mar 2023 22:35:35 +0200 Hi,
Is it possible to have a preview on external url, for example a picture, when i paste url in msg? same way when i upload it from my device?

]]>
19f1aca75387ac4698208475552aa108 dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19537 Thu, 09 Mar 2023 21:11:42 +0200 6.to create new threads and post messages [POST] https://<yoursite>/?rest_route=/better-messages/v1/createnewthread&JWT=JWT

// register create thread endpoint
add_action('rest_api_init', function () {
register_rest_route( 'better-messages/v1', '/createnewthread',array(
'methods' => 'POST',
'callback'…
Read more

]]>
6a9a667e4a7940d5dd8ae00d311a40da dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19536 Thu, 09 Mar 2023 21:11:08 +0200 5. to add messages [POST] https://<yoursite>/?rest_route=/better-messages/v1/addmessagetothread&JWT=JWT

// register add message endpoint
add_action('rest_api_init', function () {
register_rest_route( 'better-messages/v1', '/addmessagetothread',array(
'methods' => 'POST',
'callback' =>…
Read more

]]>
886621fe750fc89cebb06d3774213886 dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19535 Thu, 09 Mar 2023 21:10:41 +0200 ok, hacked-up some wordpress rest endpoints (my first php yeah!)

1. you need simpleJWT plugin to take care of auth.
2. make sure you enable jwt on all endpoints and pass &jwt=<token>
3. this is not production software! as said i am not a PHP engie (assembler, c, c++, c#, pascal but not php 🙂
4. drop the code in functions.php in your themes…Read more

]]>
affca770f3bfe2c5cec3652006c66583 dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19530 Thu, 09 Mar 2023 21:05:50 +0200 6.to create new threads and post messages [POST] https://<yoursite>/?rest_route=/better-messages/v1/createnewthread&JWT=JWT
// register create thread endpoint
add_action(‘rest_api_init’, function () {
register_rest_route( ‘better-messages/v1’, ‘/createnewthread’,array(
‘methods’ => ‘POST’,
‘callback’ =>…Read more

]]>
4e2b739d12ee5f0820e0e0f2d6f52103 dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19529 Thu, 09 Mar 2023 21:05:32 +0200 ok, hacked-up some wordpress rest endpoints (my first php yeah!)

1. you need simpleJWT plugin to take care of auth.
2. make sure you enable jwt on all endpoints and pass &jwt=<token>
3. this is not production software! as said i am not a PHP engie (assembler, c, c++, c#, pascal but not php 🙂
4. drop the code in functions.php in your themes…Read more

]]>
560d7524ad1998913632e30d7e14b39a dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19525 Thu, 09 Mar 2023 18:35:48 +0200 PS: like you lost buddypress, we dont need, was just there for better messages. I am c# engineer, not php, will try to hack a simple wordpress endpoint

]]>
e6293406b18ee10543b5b87c23f5cd7f dennis replied to the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/#post-19524 Thu, 09 Mar 2023 18:19:00 +0200 thanks for pointing it out, missed that disconnect from buddypress, like. However my bot is external and not within wordpress itself. Is there another an endpoint? url I can abuse?

]]>
d1107c6a1256c9e157bbb40c84277d77 dennis started the topic buddypress/v1/messages REST API in the forum BP Better Messages https://www.wordplus.org/forums/topic/buddypress-v1-messages-rest-api/ Wed, 08 Mar 2023 20:00:41 +0200 Hi,

Is there somebody that uses the buddypress messages API in combination with SimpleJWT plugin? I am having serious doubts that this API can be used in combination with Better Messages. Although it sometimes works (miracle?) it most of the times reports “There was an error trying to create the message.”. I am a 100% sure I am authenticated and…Read more

]]>
23a9b0fe71a8babc862339566f421e7b dennis replied to the topic API insert message in chat in the forum BP Better Messages https://www.wordplus.org/forums/topic/api-insert-message-in-chat/#post-12879 Sun, 17 Jul 2022 10:57:12 +0200 ok, short update, due to other priorities put this on hold for a while. Via the endpoints from buddypress managed to add ads to the group chats every so many seconds. works great. its still pretty unclear to me what the user_id, thread_id, etc actually mean for better messages, can’t seem to confirm it has something to do with which chatroom, just…Read more

]]>
f85c19d1553a96b005d7f22057844f70 dennis replied to the topic API insert message in chat in the forum BP Better Messages https://www.wordplus.org/forums/topic/api-insert-message-in-chat/#post-11845 Sun, 24 Oct 2021 17:58:26 +0200 Hi,
Again stunned by your support however how to put this message in a specific chat window? should i use thread id for that or something?

Regards,
Dennis

]]>
490dcef81afadc1872fa003e9793831f dennis started the topic API insert message in chat in the forum BP Better Messages https://www.wordplus.org/forums/topic/api-insert-message-in-chat/ Sun, 24 Oct 2021 17:42:40 +0200 Hi,
Was wondering if somebody has example of posting message in a specific chat? I like to insert ads now and than to get funding for the websocket license.
Understand that it should support the buddypress messaging api, anyone got example? preferably in C# but any language will do. Highly…Read more

]]>
346190bf4b36aaa4008b883855471363 dennis started the topic lightbox / attachment / images in the forum BP Better Messages https://www.wordplus.org/forums/topic/lightbox-attachment-images/ Thu, 07 Oct 2021 21:50:48 +0200 is there a way to disable the bp better messages lightbox? I am using another lightbox and its shows after i close the bp better messages one..

]]>
e4bec253b88c5a40f61c97d1b553ca61 dennis replied to the topic Build in username popup in the forum BP Better Messages https://www.wordplus.org/forums/topic/build-in-username-popup/#post-11670 Thu, 07 Oct 2021 21:03:05 +0200 ok, awesome support! thanks for the quick message. please consider it for the future.

]]>
9f00cee4f7f7ff052b64714b242816ad dennis started the topic Build in username popup in the forum BP Better Messages https://www.wordplus.org/forums/topic/build-in-username-popup/ Thu, 07 Oct 2021 20:24:58 +0200 Hi,

Just wondering, want to provide a chat on my site but for non registrated / non logged in visitors. Is there a way to do this via shortcodes? which name they get is not relevant but right now they cant seem to enter the chat (it says they are joined but cant type).

Regards,
Dennis

]]>
ca2327fe9f30e504059a276cd9b47f67 dennis became a registered member https://www.wordplus.org/activity/p/90262/ Thu, 07 Oct 2021 20:21:58 +0200 0