inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on May 2, 2017 13:09:35 GMT -8
Forum URL: nicetomeet.proboards.com/Is is possible to put the title of the subject in all the threads in the comment line instead of reply and date. Hope the picture explains what I mean. Thank you.
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on May 2, 2017 13:30:49 GMT -8
Hi, toetapping ~
I did this on a few of my themes. It's similar to what you want. It puts the title of the thread on the top of every post ~
Just add this line of code in Admin > Structure > Layout Templates > Thread > Post List directly below "$[post.thread]" approximately on line 13:
<div style="font-size: 16px; margin-bottom: -5px;">$[post.thread.subject]</div> Change the font size and margin to one of your choosing.
Also, since you're a member, you can check it out on my theme "Teal Tranquility" to see if it's what you want.
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on May 2, 2017 14:04:33 GMT -8
Brilliant Luv. I appreciate your help. It worked on my test but not on my forum. This is the code for Jaded Spruce. I couldn't find it. I put it under line 13 as there is a post.thread there but it didn't work.
{foreach $[post]}
<tr id="$[post.content_id]" class="$[post.content_class]{if $[post.even]} even{/if}{if $[viewing_recent_posts]} recent{/if}">
<td class="$[post.unblocked_class]">
<table role="grid">
<tr>
<td class="left-panel" rowspan="2">
$[post.created_by_user.miniprofile]
</td>
<td class="content">
<div class="content-head ui-helper-clearfix">
<div class="info">
<span class="thread-link">$[post.thread]</span>
<span id="post-text-$[post.id]" class="post-method"></span>
<script type="text/Javascript">
{if $[post.index] == 0}
var post = { page: location.href.match(/page=(\d+)/)?RegExp.$1-0:1, index: 0 };
{/if}
var index = (post.page-1)*15 + post.index++;
if(!location.href.match(/(\?|\&)q=/) && proboards.data("route").name == "thread"){
$("#post-text-$[post.id]").html(index == 0?"Thread started on ":"Reply #"+index+" on ");
}
</script>
<span class="date">$[post.date]</span>
{if $[post.how_posted]}
<span class="post-method">via $[post.how_posted]</span>
{/if}
$[post.likes]
</div>
<div class="controls">
$[post.quote_button]
$[post.edit_button]
$[post.likes.button]
$[post.select_options]
</div>
</div>
<h3 class="title aria-hidden">Post by $[post.created_by_user.name] on $[post.date]</h3>
<div class="message">$[post.message]</div>
</td>
</tr>
<tr>
<td class="foot">
<div class="edited_by"><a class="to-top" onclick="scroll(0,0);"><img src="http://i57.tinypic.com/2utj89i.jpg" /></a><a href="#bottom" onclick="scroll(0,0);"><img src="http://i62.tinypic.com/do00u9.jpg" /></a></div>
{if $[post.created_by_user.signature]}
<div class="signature">$[post.created_by_user.signature]</div>
{/if}
</td>
</tr>
</table>
</td>
{if $[post.is_blocked]}
<td class="$[post.blocked_class] content center">
<div class="message note pad-bottom">This post is hidden</div>
$[post.display_blocked_post_button]
</td>
{/if}
</tr>
{/foreach}
{if !$[post]}
<tr class="last"><td class="last center" colspan="1">No posts were found.</td></tr>
{/if}
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on May 2, 2017 14:52:46 GMT -8
toetapping ~
I'm headed out for a bit. But am I understanding correctly? You're saying you don't have this line $[post.thread] in your Jaded Spruce Post List tab??
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on May 2, 2017 15:48:20 GMT -8
Looking at about 6 of my forum themes none of them have it in the Post List tab.
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on May 2, 2017 16:02:28 GMT -8
Brilliant Luv. I appreciate your help. It worked on my test but not on my forum. This is the code for Jaded Spruce. I couldn't find it. I put it under line 13 as there is a post.thread there but it didn't work. {foreach $[post]} <tr id="$[post.content_id]" class="$[post.content_class]{if $[post.even]} even{/if}{if $[viewing_recent_posts]} recent{/if}"> <td class="$[post.unblocked_class]"> <table role="grid"> <tr> <td class="left-panel" rowspan="2"> $[post.created_by_user.miniprofile] </td> <td class="content"> <div class="content-head ui-helper-clearfix"> <div class="info"> <span class="thread-link"> $[post.thread]</span> It's there, toetapping .
Towards the top of all of the coding you posted. I highlighted it for you. Your template layout is different than mine, but it's still there.
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on May 2, 2017 16:28:40 GMT -8
Here is the code done. and here is a picture of what it looks like. {foreach $[post]} <tr id="$[post.content_id]" class="$[post.content_class]{if $[post.even]} even{/if}{if $[viewing_recent_posts]} recent{/if}"> <td class="$[post.unblocked_class]"> <table role="grid"> <tr> <td class="left-panel" rowspan="2"> $[post.created_by_user.miniprofile] </td> <td class="content"> <div class="content-head ui-helper-clearfix"> <div class="info"> <span class="thread-link">$[post.thread]</span> <div style="font-size: 16px; margin-bottom: -5px;">$[post.thread.subject]</div> <span id="post-text-$[post.id]" class="post-method"></span>
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on May 2, 2017 16:35:18 GMT -8
Try adjusting thismargin-bottom: -5px to a different number.
Or you can try adding either of these at the bottom of your style sheet ~ adjusting the numbers. I had to do this on my themes because each is so different.
It's the reason why most of my themes don't have this. All of the adjusting was too time consuming.
.posts .post.item .thread-link { display: inline-block; vertical-align: bottom; padding-right:.8em; } ~ or ~
.posts .post.recent.item .thread-link { display: none; }
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on May 2, 2017 17:15:31 GMT -8
Change the number in the second code from -5px to -10px and bingo it worked.
I wish to thank you very much for your time an patience.
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on May 2, 2017 17:21:10 GMT -8
Y/W, toetapping !
Glad it's sorted and glad to help.
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on Jul 10, 2017 13:09:46 GMT -8
Hi Luv Believe it or not the double print has come back. I found a plugin for putting it up the top and much better. Thought I took off the code links and it was alright for a while. If I untick the plugin there is no code but when I tick it the two of them come up. Here is the link again for my forum. nicetomeet.proboards.com/Here is my style sheet. link nicetomeet.proboards.com/admin/themes/75/css
|
|
inherit
133488
0
Nov 24, 2024 12:22:41 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on Jul 10, 2017 19:54:38 GMT -8
Problem is fixed. Sorry for the inconveniece.
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on Jul 11, 2017 0:06:13 GMT -8
|
|