inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 3, 2016 12:30:47 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓this is my layout template shoutbox code: Shoutbox tab: <!-- SHOUTBOX REMODEL // CREDIT TO ALISHA OF ADOXOGRAPHY.BOARDS.NET -->
<div class="$[shoutbox_class] container full">
<div class="title-bar"><h2>Shoutbox</h2></div>
<div class="content">
{if $[welcome_message]}
<div class="pad-all-double content-box shoutbox_welcome_message">
$[welcome_message]
</div>
{/if}
<div class="shoutbox_container orientation-$[reply_box_position] {if !$[can.post]}no-post{/if}">
<div class="$[shoutbox_posts_class]" style="height: $[height];" aria-live="polite">
{if $[shoutbox_posts]}
$[shoutbox_posts]
{else}
<b>There are no posts here.{if $[can.post]} Start the conversation {if $[reply_box_position] == 'bottom'}below{else}above{/if}!{/if}</b>
{/if}
</div>
{if $[can.post]}
<div class="shoutbox_form_container">
$[shoutbox_form.header]
<div class="shoutbox_name">
{if $[shoutbox_form.guest_name.input]}
Shout as: $[shoutbox_form.guest_name.input]
{else}
Shouting as: $[current_user]
{/if}
</div>
<div class="shoutbox_form content-box">
$[shoutbox_error]
$[refresh_button]
$[reply_box_buttons]
$[shoutbox_form.message.input]
$[message_character_count]
$[post_button]
$[cancel_button]
</div>
$[shoutbox_form.footer]
</div>
{/if}
</div>
</div>
</div>
<!-- SHOUTBOX REMODEL // CREDIT TO ALISHA OF ADOXOGRAPHY.BOARDS.NET -->
Individual Posts Tab {foreach $[shoutbox_post]}
<div class="$[shoutbox_post.content_class] content-box"{if $[shoutbox_post.edited]} title="$[shoutbox_post.edited]"{/if}>
<table>
<tbody>
<tr>
<td width="60px;" valign="top">
<a href="$[shoutbox_post.created_by.href]" style="float: left; width: 50px;height:50px;margin-right:3px;">$[shoutbox_post.created_by.avatar_small] </a>
</td>
<td valign="top">
<table width="100%">
<tbody>
<tr>
<td valgin="top" style="padding-right:5px;" width="100%">
<div style="font:15px Playfair Display;float:left;">$[shoutbox_post.created_by.name]:</div>
<div style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
$[shoutbox_post.date]
{if $[shoutbox_post.edited]}<span class="edited">*</span>{/if}</div>
</td>
</tr>
<tr>
<td valign="top">
<span class="message" width="100%">$[shoutbox_post.message]</span>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top" width="10">
$[shoutbox_post.delete_button]
</td>
</tr>
</tbody>
</table>
<div class="ui-helper-clearfix"></div>
</div>
{/foreach} If I can edit something here to enable them to edit, I will.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 3, 2016 14:07:21 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ this is my layout template shoutbox code: Shoutbox tab:
Individual Posts Tab
If I can edit something here to enable them to edit, I will. individual posts {foreach $[shoutbox_post]}
<div class="$[shoutbox_post.content_class] content-box"{if $[shoutbox_post.edited]} title="$[shoutbox_post.edited]"{/if}>
<table>
<tbody>
<tr>
<td width="60px;" valign="top">
<a href="$[shoutbox_post.created_by.href]" style="float: left; width: 50px;height:50px;margin-right:3px;">$[shoutbox_post.created_by.avatar_small] </a>
</td>
<td valign="top">
<table width="100%">
<tbody>
<tr>
<td valgin="top" style="padding-right:5px;" width="100%">
<div style="font:15px Playfair Display;float:left;">$[shoutbox_post.created_by.name]:</div>
<div class="details" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
$[shoutbox_post.date]
{if $[shoutbox_post.edited]}<span class="edited">*</span>{/if}</div>
</td>
</tr>
<tr>
<td valign="top">
<span class="message" width="100%">$[shoutbox_post.message]</span>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top" width="10">
$[shoutbox_post.delete_button]
</td>
</tr>
</tbody>
</table>
<div class="ui-helper-clearfix"></div>
</div>
{/foreach} try that, adds a details class
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 3, 2016 14:13:12 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ this is my layout template shoutbox code: Shoutbox tab:
Individual Posts Tab
If I can edit something here to enable them to edit, I will. individual posts {foreach $[shoutbox_post]}
<div class="$[shoutbox_post.content_class] content-box"{if $[shoutbox_post.edited]} title="$[shoutbox_post.edited]"{/if}>
<table>
<tbody>
<tr>
<td width="60px;" valign="top">
<a href="$[shoutbox_post.created_by.href]" style="float: left; width: 50px;height:50px;margin-right:3px;">$[shoutbox_post.created_by.avatar_small] </a>
</td>
<td valign="top">
<table width="100%">
<tbody>
<tr>
<td valgin="top" style="padding-right:5px;" width="100%">
<div style="font:15px Playfair Display;float:left;">$[shoutbox_post.created_by.name]:</div>
<div class="details" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
$[shoutbox_post.date]
{if $[shoutbox_post.edited]}<span class="edited">*</span>{/if}</div>
</td>
</tr>
<tr>
<td valign="top">
<span class="message" width="100%">$[shoutbox_post.message]</span>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top" width="10">
$[shoutbox_post.delete_button]
</td>
</tr>
</tbody>
</table>
<div class="ui-helper-clearfix"></div>
</div>
{/foreach} try that, adds a details class no such luck.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 3, 2016 14:58:55 GMT -8
is there any chance we could have the comments collapsible ? i'm seeing if a reply gets a lot of comments then thats all we'll be able to see in the shoutbox, unless we scroll all the way down, but then all of them might have long comments on aswell. maybe just the top bumped one shows, and all the ones underneath auto colapse with a flashing "new comments" on. does this make sense o wise one ? I got the collapsible done. Download Now version 1.0.1
Tell me any additional features or ideas you would like to see with collapsible comments. I'm unsure of what you mean by "new comments" as to how do I know if they are "New"
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 3, 2016 15:05:35 GMT -8
individual posts {foreach $[shoutbox_post]}
<div class="$[shoutbox_post.content_class] content-box"{if $[shoutbox_post.edited]} title="$[shoutbox_post.edited]"{/if}>
<table>
<tbody>
<tr>
<td width="60px;" valign="top">
<a href="$[shoutbox_post.created_by.href]" style="float: left; width: 50px;height:50px;margin-right:3px;">$[shoutbox_post.created_by.avatar_small] </a>
</td>
<td valign="top">
<table width="100%">
<tbody>
<tr>
<td valgin="top" style="padding-right:5px;" width="100%">
<div style="font:15px Playfair Display;float:left;">$[shoutbox_post.created_by.name]:</div>
<div class="details" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
$[shoutbox_post.date]
{if $[shoutbox_post.edited]}<span class="edited">*</span>{/if}</div>
</td>
</tr>
<tr>
<td valign="top">
<span class="message" width="100%">$[shoutbox_post.message]</span>
</td>
</tr>
</tbody>
</table>
</td>
<td valign="top" width="10">
$[shoutbox_post.delete_button]
</td>
</tr>
</tbody>
</table>
<div class="ui-helper-clearfix"></div>
</div>
{/foreach} try that, adds a details class no such luck. change details to detailsHelper and install the newest plugin update
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 3, 2016 15:24:06 GMT -8
change details to detailsHelper and install the newest plugin update Still isn't working for me. I'm sorry.
<div class="detailsHelper" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
Have it exactly like this.
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 21, 2024 16:16:07 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on May 3, 2016 15:51:25 GMT -8
is there any chance we could have the comments collapsible ? i'm seeing if a reply gets a lot of comments then thats all we'll be able to see in the shoutbox, unless we scroll all the way down, but then all of them might have long comments on aswell. maybe just the top bumped one shows, and all the ones underneath auto colapse with a flashing "new comments" on. does this make sense o wise one ? I got the collapsible done. Download Now version 1.0.1
Tell me any additional features or ideas you would like to see with collapsible comments. I'm unsure of what you mean by "new comments"as to how do I know if they are "New" you put "show previous comments" which is the same so thats all i meant kindof So it's all working fine for me thank you, if you want an additional feature we could have tiny member avatars instead of names maybe ? idk
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 3, 2016 16:26:57 GMT -8
I got the collapsible done. Download Now version 1.0.1
Tell me any additional features or ideas you would like to see with collapsible comments. I'm unsure of what you mean by "new comments"as to how do I know if they are "New" you put "show previous comments" which is the same so thats all i meant kindof So it's all working fine for me thank you, if you want an additional feature we could have tiny member avatars instead of names maybe ? idk Sadly that would cut the amount of comments that could be saved by half. So I wouldn't want to do that
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 3, 2016 16:29:44 GMT -8
change details to detailsHelper and install the newest plugin update Still isn't working for me. I'm sorry.
<div class="detailsHelper" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
Have it exactly like this. Your shoutbox must be too OP I will look again when I get time I would of tested it first has I had time earlier
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 21, 2024 16:16:07 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on May 3, 2016 17:03:28 GMT -8
you put "show previous comments" which is the same so thats all i meant kindof So it's all working fine for me thank you, if you want an additional feature we could have tiny member avatars instead of names maybe ? idk Sadly that would cut the amount of comments that could be saved by half. So I wouldn't want to do that Ok it haven't got a problem with that. is that it then ? end of build request time to pay up ? it's all working for me and i'm really impressed, i should get a discount for the idea, then come to think of it (greed) it was my idea so we really really should go halfs on the patent thingy whats it called. $5 and we good right ?
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 3, 2016 17:10:44 GMT -8
Still isn't working for me. I'm sorry.
<div class="detailsHelper" style="float:right;"> $[shoutbox_post.ban_button] $[shoutbox_post.edit_button]
Have it exactly like this. Your shoutbox must be too OP I will look again when I get time I would of tested it first has I had time earlier LOL. Okay thank you. Take your time. I'm sorry to be an inconvenience again.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 3, 2016 17:25:29 GMT -8
Sadly that would cut the amount of comments that could be saved by half. So I wouldn't want to do that Ok it haven't got a problem with that. is that it then ? end of build request time to pay up ? it's all working for me and i'm really impressed, i should get a discount for the idea, then come to think of it (greed) it was my idea so we really really should go halfs on the patent thingy whats it called. $5 and we good right ? Lol..if that was the way it worked..I'd be rolling in dough. They're called requests for a reason. When you request something, it stops belonging to you. They are nice enough to go through hours and hours of coding, making their eyes bleed for you, I think they deserve all the money if it were for money. lol
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 21, 2024 16:16:07 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on May 4, 2016 4:13:15 GMT -8
Ok it haven't got a problem with that. is that it then ? end of build request time to pay up ? it's all working for me and i'm really impressed, i should get a discount for the idea, then come to think of it (greed) it was my idea so we really really should go halfs on the patent thingy whats it called. $5 and we good right ? Lol..if that was the way it worked..I'd be rolling in dough. They're called requests for a reason. When you request something, it stops belonging to you. They are nice enough to go through hours and hours of coding, making their eyes bleed for you, I think they deserve all the money if it were for money. lol it is for money, i owe pastarelo $10 hard cash !! thats why he built it
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 4, 2016 8:44:30 GMT -8
Lol..if that was the way it worked..I'd be rolling in dough. They're called requests for a reason. When you request something, it stops belonging to you. They are nice enough to go through hours and hours of coding, making their eyes bleed for you, I think they deserve all the money if it were for money. lol it is for money, i owe pastarelo $10 hard cash !! thats why he built it lol
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 4, 2016 13:20:24 GMT -8
Your shoutbox must be too OP I will look again when I get time I would of tested it first has I had time earlier LOL. Okay thank you. Take your time. I'm sorry to be an inconvenience again. My power level is now over 9000. Please try version 1-0-2
|
|