hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: Editing e-mail notifications, where?
In Vanilla 2.0.18.8 you should be able to use the following definition to prevent the story from showing up: $Definition['EmailStoryNotification'] = '%1$sFollow the link below to check it out:%2$sHav… (View Post)10 -
Re: Disabling Access to Root Category Pages with "Display Root Categories As Headings"
Put this in your themehooks file. public function CategoriesController_BeforeGetDiscussions_Handler($Sender) { if(C('Vanilla.Categories.DoHeadings') && $Sender->Category->Depth == 1) { … (View Post)11 -
Re: Make links open in new window?
We can use the target="_blank" attribute to force opening in a new window/tab. $(document).ready(function() { $('.MessageList a').attr('target', '_blank');}); This is javascript (using jQue… (View Post)7 -
Re: Make links open in new window?
If you are familiar with CSS selectors, you can choose which ever you would like to put in the $('Selectors here') part of the previous code snippet. For example: $(document).ready(function() { $('.M… (View Post)6