i have problem with this its not working when making thread but works when posting reply
I have 1.3.3 on 1.6.8 The PM is sent but there are problems with adding the post, however when the post is shown, it is not showing the tags as they should be shown (i.e. linked profiles as set in the plugin settings)
Is there any fix for this?
This plugins is very heavily used on my forums as people try to get the attention of other users.
Ok I fixed this. It appears that $post is not parsing on line 472
So
function tagging_show_post($post)
{
$post['message'] = tagging_parse($post['message'], $post['tags']);
return $post;
}
can be changed to
function tagging_show_post($post)
{
global $post;
$post['message'] = tagging_parse($post['message'], $post['tags']);
return $post;
}
and that will fix the issue that I was having. I need to check further to see if I can do this without declaring $post as a global within the function as it really should be parsed via the variable
Actually by declaring this as global it completely stuffs up other parts.So I need to find a better solution
Tagging addon for the editor (the button so you can click on it and use it) however, this pushes the justify down to a new line.
Does anyone know what CSS would fix this?
I never did get this mod working.
@[Monaco] if you have the preparser plugin installed it can cause conflicts with this
I will be releasing a new version to address this issue.
Maybe I will be actively developing this plugin for a few time for academic purposes
Hi,
i'm releasing 1.3.4 version of the plugin.
Be ware this is beta-like version because i want to be sure it works for everyone. I tested this and it seems working so far but i want to be 100% sure.
I would be very thankful if i would receive some feedbacks about the plugin.
Hi flash.tato, euantor released a fantastic notification plugin some days ago. It's called
MyAlerts. Its shipped with an extensible Alert class which let you easily integrate your plugins within MyAlerts. Any chance of getting Tagging Plugin and MyAlerts both working together?