This should be fairly easy for those familiar with vb.
As is, hybrid mode is a little deceptive because it looks like the posts are displayed in linear fashion when they are actually displayed under their parent posts. What I'm wanting to do is indent any post that is positioned under it's parent post, creating a nested look. Can someone give me some guidance on this? Thanks.
[Update:] I've been working on this a bit more, and here's an update. Any help is appreciated.
In showthread.php, the following code is used to determine the depth of a post:
PHP Code:
$parent_postids = fetch_post_parentlist($curpostid);
if (!$parent_postids)
{
$currentdepth = 0;
}
else
{
$currentdepth = sizeof(explode(',', $parent_postids));
}
This creates the variable $currentdepth to measure the depth of a post, so I figured I could just use a conditional statement within the postbit template to indent posts based on their $currentdepth value. However, when the posts are processed through the postbit template, they all have a $currentdepth value of "0".
If someone could point out why the $currentdepth of posts is set to 0 when posts are processed by the postbit template, and what I can do to address this, I would appreciate it.