[xfCrowd] Notification BB Codes

[xfCrowd] Notification BB Codes 1.1.1

No permission to download

Roka

Well-known member
kalco submitted a new resource:

Notification BB Codes - Cool bbcode with colors box notification

Create a Notification BB Code to show special colored boxes, with fontawesome icons.

Features:
  • Allowed [ERROR] bbcode.
  • Allowed [INFORMATION] bbcode.
  • Allowed [SUCCESS] bbcode.
  • Allowed [INFORMATION] bbcode.
  • Customized fontawesome icons.
How to use:
  • Create new post and put
    Code:
    [ERROR=Test title]Test content[/ERROR]

Installation:
  1. Download NotificationBBCodes_v1.0.zip and unzip it.
  2. From your...

Read more about this resource...
 
Hi @kalco ,

Thanks for this add on. Looking at it, just got this idea of extending this a bit to make Author's Block. Like the attached image. Would it be possible?

Authors block.webp
 
Yes sir... inside the post.

BTW, the author may or may not be the same as the user who's making the post. For example:

3rd Angle post an article but the article is written by Kalco. So the Author's Block will be about Kalco even though 3rd angle is posting the comment. I hope it makes sense.
 
I have installed this from the day it got released, and i have upgraded to the newest version but still cannot see the buttons only white space:

KXa26iq.png


Any idea why?
 
I think there is a small bug need to be fixed.

If you use this addon there will be problem as in the image below:

5869.webp

I don`t know where is the problem exactly! Otherwise very nice addon..
 
KXa26iq.png


problem not solved

I think you are using font awesome icons instead of sprite, here how you can solve this, add the following code into the extra.css template:
HTML:
html .redactor_toolbar li a.redactor_btn_custom_error:before {
content: "\f00d";
}
html .redactor_toolbar li a.redactor_btn_custom_information:before {
content: "\f0a2";
}
html .redactor_toolbar li a.redactor_btn_custom_success:before {
content: "\f00c";
}
html .redactor_toolbar li a.redactor_btn_custom_warning:before {
content: "\f071";
}
 
I just found another bug, you should not apply any custom modification from your add-on on all the forum, you have this code in your css template:
Code:
* {
  box-sizing: border-box;
}

It was missing up my style, I spent few hours trying to figure out what is causing it, cause it only shows in some threads which includes your add-on, that's how I figured it out.

This also a heads up for everyone. ;)
 
Top Bottom