BBCode extension is a part of standard BlogEngine distribution and since 1.3 it has admin interface that you can use to add or delete codes. That is cool, what is not cool is that updated codes will not show in the comment form; the values used there are hard coded. Makes no sense, so I decided to fix this little inconvenience. This is not hard, only ~/user controls/CommentView.ascx and corresponding code behind file need to be changed. First, open for edit code behind (~/user control/CommentView.cs) and add using directive and simple function that will pull data from settings object and format them for display: More...