Chat by Siropu

Chat by Siropu [Paid] 1.25.1

No permission to buy (€29.99)
@ŽivaAkcija, Adding Font Awesome for chat bot requires template edits.
@Rambro, in mobile view there should be an icon in the chat header that shows/hides the chatters list when you click on it.
 
Just switched to you guys.
My users have two complaints.
Any image that's posted the chat no longer autoscrolls.

They would like the chat to be bigger then the Maximized size.
I had Taiga at 600x300 I think, because they prefer it oversized for whatever reason lol.

I'm assuming the size I could change in a template somewhere?

But do you know about the scrolling problem already?
 
can you provide code to do that?
Go to Templates > siropu_chat_messages

Find:
Code:
<a class="avatar"><img src="@siropuChatBotAvatar"></a>
Replace:
Code:
<img src="@siropuChatBotAvatar">
With your Font Awesome Icon:
Code:
<i class="fa fa-android"></i>

I'm assuming the size I could change in a template somewhere?
Add this code in EXTRA.css:
Code:
.siropuChatMaximized #siropuChatContent {
    height: 600px !important;
}

Regarding the autoscroll when images are posted, there might be a delay of 1.5 seconds when chat has images.
 
Add this code in EXTRA.css:
Code:
.siropuChatMaximized #siropuChatContent {
    height: 600px !important;
}

Regarding the autoscroll when images are posted, there might be a delay of 1.5 seconds when chat has images.
Awesome thanks
Any way to remove the delay?

EDIT:
Also, I'm assuming due to the theme I have installed, the color behind our chat when we get tagged is an insanely bright white. What property controls this color?
 
Last edited:
Awesome thanks
Also, I'm assuming due to the theme I have installed, the color behind our chat when we get tagged is an insanely bright white. What property controls this color?
Same here. url link also with the same color.

im using theme from artodia and UI.X.
 
Awesome thanks
Any way to remove the delay?

EDIT:
Also, I'm assuming due to the theme I have installed, the color behind our chat when we get tagged is an insanely bright white. What property controls this color?

Same here. url link also with the same color.

im using theme from artodia and UI.X.

In siropu_chat.css,

Code:
#siropuChat {
    @property "siropuChatContainer";
    background-color: @contentBackground;
    border: 1px solid @primaryLighter;
    border-radius: 5px;
    position: relative;
    z-index: 99;
    @property "/siropuChatContainer";
}

change @contentBackground
 
@Rambro Add this:
Code:
#siropuChat .inTextMiniMe img { top: -3px; }
I kinda suggest to either hide the avatar from the chat, or shrink it a little. Because it kinda feels out of place.
 
@Rambro Seems like you'll have to edit the add-on files to completely prevent it from appearing on the chat. But you can also simply hide it with CSS. On the one I gave you before, simply replace top: 3px with display: none.
Also, how did you hide the @ tag from appearing in front of the username? I believe it was somewhere on XenForo's settings, but I couldn't remember the exact location of the option.
 
@Rambro Seems like you'll have to edit the add-on files to completely prevent it from appearing on the chat. But you can also simply hide it with CSS. On the one I gave you before, simply replace top: 3px with display: none.
Also, how did you hide the @ tag from appearing in front of the username? I believe it was somewhere on XenForo's settings, but I couldn't remember the exact location of the option.
The add on replaces the @ with the avatar
 
Top Bottom