Proxybunker
Well-known member
you did not do a very good search thenHi All
Can I have babiato link to official Resources addon of Xenforo nulled ?
I searched and cannot find it @CyberDeviL
here are the links
you did not do a very good search thenHi All
Can I have babiato link to official Resources addon of Xenforo nulled ?
I searched and cannot find it @CyberDeviL
thanks buddy, I haven't seen about 2.2.10 patch yet. Thanks for notifying.you did not do a very good search then
here are the links
Yes, with adsense, you don't need to add code on your subdomain. Ads are automatically added to it if you have auto ads enabled in parent domain.If you did not want to show ads on subdomain, then why you added it to adsense subdomain section ?
Are you sure there's no Ad code or file exists on that subdomain ?
If no then may be it's taking from parent domain property (I'm not 100% sure though) .
Resolved it by using [TH] User Criteria Extended@Proxybunker @Tomz Can I Set a Secondary User Group based on forum thread counts?
If someone has created 10 posts (not comments) on a section, he will automatically be assigned to a secondary group.
I wanted to know how to properly make user group badges. Like the OG users forum i'd love to make groups that people can join as a secondary group to their primary group.
There's a guide explaining it: https://xenforo.com/community/resources/creating-custom-user-banner-styling.7334/
But I can't access it due to not having an active license. Does anyone have an idea of how to properly make this?
Here I explained how to add custom user Banner with default styles - https://babiato.tech/threads/how-to-add-enable-custom-badges.76601/post-1088072I wanted to know how to properly make user group badges. Like the OG users forum i'd love to make groups that people can join as a secondary group to their primary group.
There's a guide explaining it: https://xenforo.com/community/resources/creating-custom-user-banner-styling.7334/
But I can't access it due to not having an active license. Does anyone have an idea of how to properly make this?
I want to use an image as a group badge.Here I explained how to add custom user Banner with default styles - https://babiato.tech/threads/how-to-add-enable-custom-badges.76601/post-1088072
I want to use an image as a group badge.
Like these:
This is the resource I should've linked:
![]()
Unmaintained - How to add a Custom Group Badge / Banner to User Info
Display image with "User banner text" in "User info" STEP 1: Go to: AdminCP > Appearance > Templates > and search for the "extra.less" file Open the file and add this code (Call it anything you want.) In the example here, I called it...xenforo.com
my bad!
////////////////////////////////////// START - Group Banner/Badge CSS ////////////////////////////////////
/* Adds userBanner to memberHeader-banners and memberTooltip-banners */
.userBanner.myBadge{
background-image: url('images/myBadge.png');
display: inline-block;
background-position: 1.5% 0%; // adjusts image position (x% y%)
background-size: 45px; // adjusts size of background image
background-repeat: no-repeat; // keeps image from repeating
text-indent: -7px; // shifts text left or right
padding-top: 50px; // adjusts distance from image to text (group name)
text-align: left;
}
/* Adjusts image for message-userBanner only */
.userBanner.myBadge.message-userBanner {
background-image: url('images/myBadge.png');
display: block;
background-repeat: no-repeat; // keeps image from repeating
background-size: 45px; // adjusts size of background image
background-position: 50% 0%; // adjusts image position (x% y%)
text-indent: 0px; // shifts text left or right
padding-top: 45px; // adjusts distance from image to text (group name)
text-align: center;
}
/* Adjust size and position, and/or remove image in mobile view */
@media (max-width: 650px){
.userBanner.myBadge.message-userBanner.userBanner {
// background-image: none; // *** to remove background image remove "//" in front of code ***
display: inline-block;
background-size: 35px; // adjusts size of background image
background-position: 0% 0%; // adjusts image position (x% y%)
text-indent: -7px; // shifts text left or right
padding-top: 37px; // adjusts distance from image to text (use with image)
// padding-top: 0px; // if image is set to "none", remove "//" and remove line above)
text-align: left;
}
}
///////////////////////////////////// End - Group Banner/Badge CSS /////////////////////////////////
////////////////////////////////////// START - Group Banner/Badge CSS ////////////////////////////////////
/* Adds userBanner to memberHeader-banners and memberTooltip-banners */
.mybadge{
background-image: url('http://site.com/mybadge.png');
display: inline-block;
background-position: 1.5% 0%; // adjusts image position (x% y%)
background-size: 45px; // adjusts size of background image
background-repeat: no-repeat; // keeps image from repeating
text-indent: -7px; // shifts text left or right
padding-top: 50px; // adjusts distance from image to text (group name)
text-align: left;
}
/* Adjusts image for message-userBanner only */
.mybadge.message-userBanner {
background-image: url('http://site.com/mybadge.png');
display: block;
background-repeat: no-repeat; // keeps image from repeating
background-size: 45px; // adjusts size of background image
background-position: 50% 0%; // adjusts image position (x% y%)
text-indent: 0px; // shifts text left or right
padding-top: 45px; // adjusts distance from image to text (group name)
text-align: center;
}
/* Adjust size and position, and/or remove image in mobile view */
@media (max-width: 650px){
.mybadge.message-userBanner.userBanner {
// background-image: none; // *** to remove background image remove "//" in front of code ***
display: inline-block;
background-size: 35px; // adjusts size of background image
background-position: 0% 0%; // adjusts image position (x% y%)
text-indent: -7px; // shifts text left or right
padding-top: 37px; // adjusts distance from image to text (use with image)
// padding-top: 0px; // if image is set to "none", remove "//" and remove line above)
text-align: left;
}
}
///////////////////////////////////// End - Group Banner/Badge CSS /////////////////////////////////