inherit
224902
0
Feb 15, 2017 12:50:39 GMT -8
Matt
2,940
September 2015
mattyboo1
|
Post by Matt on Oct 9, 2015 16:53:12 GMT -8
|
|
inherit
192136
0
Aug 17, 2014 8:10:36 GMT -8
?adwoman?
1,884
April 2013
adwoman
|
Post by ?adwoman? on Oct 9, 2015 17:39:18 GMT -8
ask for a reindex at support to see that solve your problem and try add group
|
|
inherit
224902
0
Feb 15, 2017 12:50:39 GMT -8
Matt
2,940
September 2015
mattyboo1
|
Post by Matt on Oct 9, 2015 17:48:14 GMT -8
ask for a reindex at support to see that solve your problem and try add group I am not having an issue with searches or anything that should require a reindex though. It is very odd. Could a reindex help this?
|
|
inherit
192136
0
Aug 17, 2014 8:10:36 GMT -8
?adwoman?
1,884
April 2013
adwoman
|
Post by ?adwoman? on Oct 9, 2015 17:49:38 GMT -8
ask for a reindex at support to see that solve your problem and try add group I am not having an issue with searches or anything that should require a reindex though. It is very odd. Could a reindex help this? it wouldn't hurt to ask
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Oct 9, 2015 21:52:14 GMT -8
Just curious, Matt - On your Admin > Plugins > Manage page, if you click the Edit button (for the plugin), is it set to Everyone and there are no Member Groups listed in the Except members in the groups area?
|
|
inherit
224902
0
Feb 15, 2017 12:50:39 GMT -8
Matt
2,940
September 2015
mattyboo1
|
Post by Matt on Oct 11, 2015 6:01:41 GMT -8
Just curious, Matt - On your Admin > Plugins > Manage page, if you click the Edit button (for the plugin), is it set to Everyone and there are no Member Groups listed in the Except members in the groups area? yes it is set to all. its working for all new members but for us existing members it isnt working.
|
|
inherit
224902
0
Feb 15, 2017 12:50:39 GMT -8
Matt
2,940
September 2015
mattyboo1
|
Post by Matt on Oct 11, 2015 6:09:32 GMT -8
EDIT: it is finally working now, I honestly have no idea what the problem was but it appears to be working now.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Oct 14, 2015 18:36:14 GMT -8
Something must have changed. Or maybe you kept checking a cached version of the page?
|
|
inherit
226878
0
Nov 22, 2015 6:54:56 GMT -8
tranquilty
2
November 2015
tranquilty
|
Post by tranquilty on Nov 19, 2015 19:01:35 GMT -8
hey im trying to use your plugin alongside the Custom Mini-Profile Creator Plugin Editor
how could i add your level bar to the templates of the Custom Mini-Profile Creator Plugin Editor here is a example of the template code
HTML
$[user]
<div class="group">$[user.group.name]<br />$[user.group.stars]</div>
<div class="rank">$[user.rank.name]<br />$[user.rank.stars]</div>
<div class="custom_title">$[user.custom_title]</div>
<div class="warning">$[user.warning.bar]</div>
<br />
<div class="avatar">$[user.avatar]</div>
<br />
<div class="status">$[user.personal_text]<br /></div>
<div class="info">
<span class="float-right">$[user.gender.image]</span>
Posts: $[user.posts]
<div class="online"><img src="http://i.imgur.com/YyNLx.gif"></div>
</div>
<br />
<div class="badges">$[user.badges]</div>
<div class="group-tag">$[user.group.name]</div>
<div class="levelBarHere">posts: $[user.posts]</div>
<div>
<span style="display:none">posts: $[user.posts]</span>
</div>
CSS
/* Outside */
.mini-profile.test-mp {
padding: 13px 10px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
border-radius: 5px;
-webkit-border-radius: 5px;
background-color: #000;
background-image: url("http://images.proboards.com/v5/banners/image-clear-skies.png");
background-position: center top;
border-width: 0;
box-shadow: 0 0 2px #000;
color: #ddd;
overflow: hidden;
position: relative;
width: 100%;
}
/* Display name */
.mini-profile.test-mp .user-link { color: #00af33; }
/* Hide rank by default */
.mini-profile.test-mp .rank { display: none; }
/* Personal text and info */
.mini-profile.test-mp .personal-text,
.mini-profile.test-mp .info {
font-weight: bold;
color: #000;
font-size: 80%;
}
/* Group tag */
.mini-profile.test-mp .group-tag {
font-size: 7px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
background-color: #111;
box-shadow: 0px 0px 2px #000;
background-image: url(http://images.proboards.com/v5/gradients/sexy.png);
color: #fff;
text-shadow: 2px 2px 2px #000;
border-radius: 0 0 0 10px;
-webkit-border-radius: 0 0 0 10px;
padding: 3px 6px;
position: absolute;
top: 0px;
right: 0px;
}
Javascript
// EXAMPLE 1
// The default mini-profile, but a bit more stylish.
// Add class to mini-profile to use in CSS
$(this).addClass('test-mp');
// Hide custom title if none exists
if(!user.custom_title)
$(this).children('.custom_title').hide();
// Show rank if not in group
if(!user.group){
$(this).children('.group').hide();
$(this).children('.rank').show();
if(!user.is_staff)
$(this).children('.group-tag').hide();
}
// Hide personal text if none exists
if(!user.personal_text)
$(this).children('.status').hide();
// Hide online status if offline
if(!user.is_online)
$(this).find('.online').hide();
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Nov 22, 2015 1:29:22 GMT -8
It cant find the post count because it expects the default. add this into the HTML:
<span style="display:none">$[user.posts]</span>
I know you have posts in there, but its different then the way the default would have it.
|
|
inherit
226878
0
Nov 22, 2015 6:54:56 GMT -8
tranquilty
2
November 2015
tranquilty
|
Post by tranquilty on Nov 22, 2015 4:21:23 GMT -8
okay so. im new to doing all this stuff. but have i added it in the right place
$[user]
<div class="group">$[user.group.name]<br />$[user.group.stars]</div>
<div class="rank">$[user.rank.name]<br />$[user.rank.stars]</div>
<div class="custom_title">$[user.custom_title]</div>
<div class="warning">$[user.warning.bar]</div>
<br />
<div class="avatar">$[user.avatar]</div>
<span style="display:none">$[user.posts]</span>
<div class="LevelBarHere"></div>
<br />
<div class="status">$[user.personal_text]<br /></div>
<div class="info">
<span class="float-right">$[user.gender.image]</span>
Posts: $[user.posts]
<span style="display:none">$[user.posts]</span>
<div class="online"><img src="http://i.imgur.com/YyNLx.gif"></div>
</div>
<br />
<div class="badges">$[user.badges]</div>
<div class="group-tag">$[user.group.name]</div>
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Nov 22, 2015 8:47:48 GMT -8
In this case it doesn't matter too much where you add it since its hidden. But the fact it is there is what matters. Your tone implies it still isn't working though
|
|
inherit
227098
0
Jul 15, 2016 0:15:46 GMT -8
think2succeed
85
November 2015
think2succeed
|
Post by think2succeed on Nov 27, 2015 5:30:06 GMT -8
Hi Wormopolis, I can't get the plugin to work on my forum although I tried all the possible scenarios I thought of (including those in the first post). My forum is at arwr.proboards.comAny ideas how to fix it ? Thx.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Dec 15, 2015 15:49:41 GMT -8
You need to have start and end colors set up for each of the rank bars
|
|
inherit
227098
0
Jul 15, 2016 0:15:46 GMT -8
think2succeed
85
November 2015
think2succeed
|
Post by think2succeed on Dec 16, 2015 3:32:51 GMT -8
Ok..thx
|
|