it would be great if the inbox was slightly more obvious - it took me a lot of hunting to find it. an option to notify and to delete messages would also be very useful. and how about a PM link next to each user comment?
Thanks! I know, it would be useful, and the typos are because I tried to do a "Find and Replace"
Which I didn't need to do...
But the PM, Notify and Delete message, I will work on, I don't know much about PHP though, I'm quite new to it.
If you have Ideas to maybe put a Notification on the index page at least for the PMs you do get [like the Whisper Notifier]
That would be awsome, and the delete messages option as well...
idk I'll hunt around for Code I'm good at that at least. Thanks for the comment!
aha, i just tried it. great, thanks. the PM link in the message listing is perfect. one problem i can see is that i have to delete a message twice for it to disappear. the inbox link is not too obvious but i can add something manually to the sidebar for now.
I've just tried it and ran into a few problems. Can't find the inbox... and when I go to Account, it says Send Message to: myself.
Any help is apreciated. I'm very new to vanilla. It looks promising though.
Oh, what are you adding to the Sidebar? if it helps you out, [and others] I can add it to the code
Just post the Code here [and the code Credits, of Course!]
the Private Messaging plugin is very good but has a security flaw which allows any user to read any PM. it is much more developed than this plugin, but has been abandoned for several months.
Looks like a couple of years... Yeah, I see the Session User thingy is off, but I really Can't figure all that code out, to advanced for me lol
Although, I found some code to add a Tab at the top of the page [over all the pages] So it doesn't just show up under the Account page as a little 'ol link.
The only trouble I have is that the message Deletes the First time, but you have to either navigate away from the page, or refresh the page for the page to realize its been deleted, idk how to fix that.
The other is the New Post Thing, I have No idea how to do that. I've done all I can Really.
It may be that I got the Idea from the Private Messages Addon, and copied the code and edited to be used in User Messages. I don't get the problem, because I had Private messages installed at one point before I added that code. There must be some Code I missed in Private Messages that Defines the "TAB_POSITION_PRIVATE_MESSAGES" into the $Configuration Index.
Comments
settings.php?PostBackAction=InstallUserUserMessages
and in the Extension list:
User UserUserMessages 0.1.2
it would be great if the inbox was slightly more obvious - it took me a lot of hunting to find it. an option to notify and to delete messages would also be very useful. and how about a PM link next to each user comment?
great work so far.
one problem i can see is that i have to delete a message twice for it to disappear.
the inbox link is not too obvious but i can add something manually to the sidebar for now.
I get that notice here: http://scrawlfx.com/forums
What's the problem?
after this code @ lines 48 $ 49:
$Context->SetDefinition('Messages', 'Messages');
$Context->Dictionary["MessagesTitle"] = "User Messages";
add this:
if (!array_key_exists('PRIVATE_MESSAGES_CATEGORY_ID', $Configuration)) {
AddConfigurationSetting($Context, 'TAB_POSITION_PRIVATE_MESSAGES', '100');
} elseif (ForceInt($Configuration['PRIVATE_MESSAGES_CATEGORY_ID'], 0) == 0) {
// Add notice
$NoticeCollector->AddNotice($Context->GetDefinition('SelectPrivateMessagesCategory'));
}