MyBB Community Forums
[For 1.6] ProfileComments - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: [For 1.6] ProfileComments (/thread-51431.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45


RE: [Release] ProfileComments - Kaiser. - 2009-09-06

This is the problem I have with this plugin..check the user comments box, i attached a file..the picture is in there, please tell me how to fix this


RE: [Release] ProfileComments - umartunes - 2009-09-06

Can I add smilies too in Comment form.
Please tell me.


RE: [Release] ProfileComments - Pars - 2009-09-06

(2009-09-06, 04:11 PM)terrorz Wrote: This is the problem I have with this plugin..check the user comments box, i attached a file..the picture is in there, please tell me how to fix this
Hi
Global Templates > profile_comments_form & profile_comments_form_edit
Edit: cols=? & rows=?


RE: [Release] ProfileComments - Kaiser. - 2009-09-06

when i do that..the problem is solved...but the box with the opitons/tags is gone..there is only a field left to for text only...


RE: [Release] ProfileComments - Aquilez - 2009-09-06

Sorry, I forgot to delete the option to "minimize" the table. The MyBB editor will not work if you use it.

The only way that I know to fix this problem is deleting the "minimize icon" from the templates.


RE: [Release] ProfileComments - Kaiser. - 2009-09-07

how do i deleted it?


RE: [Release] ProfileComments - Aquilez - 2009-09-07

(2009-09-07, 07:10 PM)terrorz Wrote: how do i deleted it?

Go to:
AdminCP » Template Sets » Global Templates » Edit Template: profile_comments

Find & Delete:
<img src="{$theme['imgdir']}/{$hide_image}" id="comments_img" class="expander" alt="{$hide_text}" title="{$hide_text}" />



RE: [Release] ProfileComments - Sammyed - 2009-09-16

Hey Aquilez,

I have 3 questions for you:

1.- For those who activates, like me, the "Search engine friendly URLs" option in AdminCP. Is it possible that your plugin also detects friendly URL´s instead of having only UID´s?

2.- In the latest release for "reply to profile" you included the username in bold with a comma on it. How can I remove this?...I mean, if someone is replying to me in my profile I think it´s obvious the person is referring to me, right?

Is it in the profile_comments_form by removing this (twice)?

'[b]' + username + '[/b], '

3.- Is it possible to have a "Notification via e-mail" also when someone posts in somebody´s profile?

Regards


RE: [Release] ProfileComments - Aquilez - 2009-09-16

(2009-09-16, 04:33 AM)Sammyed Wrote: Hey Aquilez,

I have 3 questions for you:

1.- For those who activates, like me, the "Search engine friendly URLs" option in AdminCP. Is it possible that your plugin also detects friendly URL´s instead of having only UID´s?

2.- In the latest release for "reply to profile" you included the username in bold with a comma on it. How can I remove this?...I mean, if someone is replying to me in my profile I think it´s obvious the person is referring to me, right?

Is it in the profile_comments_form by removing this (twice)?

'[b]' + username + '[/b], '

3.- Is it possible to have a "Notification via e-mail" also when someone posts in somebody´s profile?

Regards

1) I think I can, but modifying core files. I never tested the FriendlyURLS in MyBB so I can't answer.

2) Yes, it's there.
Search this:
				$$("a.reply_to_profile").each(function(a)
				{
					a.observe('click', function(c) {
						var username = $(this).readAttribute('username');
						var uid = $(this).readAttribute('userid');
						clickableEditor.performInsert('[b]' + username + '[/b], ', '', true, false);
						$('reply_to_profile').value = uid;
						Event.stop(c);
					});
				});
And replace with this:
				$$("a.reply_to_profile").each(function(a)
				{
					a.observe('click', function(c) {
						var uid = $(this).readAttribute('userid');
						$('reply_to_profile').value = uid;
						Event.stop(c);
					});
				});

3) It is possible, but I have my doubts.


RE: [Release] ProfileComments - Sammyed - 2009-09-16

(2009-09-16, 12:48 PM)Aquilez Wrote: 3) It is possible, but I have my doubts.

I meant...let´s say X user sends me a message in my profile then, I receive an e-mail saying that X user sent me a message in my profile.

I think I didn´t stated the correct question.

Cheers.