Results 1 to 4 of 4

Thread: How to view a single post?

  1. #1
    Beginner
    Join Date
    Nov 2008
    Posts
    65
    Thanks
    2,084
    Thanked 248 Times in 38 Posts

    Default How to view a single post?

    Hi Phun

    Before the site vBulletin upgrade, if one clicked on the post number of a post (on the right side of the post title bar), you could see or see the URL for seeing JUST that single post. Now, after the upgrade, clicking on the post number or copy-URL-paste-and-go gives one the whole thread page, with the window scrolled down to the post in question.

    Sometimes I would like to save a post or get the pics from just a single post -- is there any way to construct a URL or use the board so as just to display a single post only in a tab or new window? Other forums still retain this feature from older version of vB. I assume this behavior is an Admin setting in vB.

    Thanks!

    Dr. Z

  2. #2
    Cogito, ergo sum. S-type's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    16,607
    Thanks
    18,622
    Thanked 64,696 Times in 7,416 Posts

    Default

    I miss that feature of the older vBulletin version too, but it appears not to be the way it works in the newer vBulletin versions!

    Thanks to SilentB for my Avatar, and TheRiver for my Sig!

  3. The Following User Says Thank You to S-type For This Useful Post:

    drzurkon (08-14-2012)

  4. #3
    ..... TheRiver's Avatar
    Join Date
    Jun 2005
    Location
    Germany
    Posts
    26,489
    Thanks
    16,216
    Thanked 95,659 Times in 10,264 Posts

    Default

    Quote Originally Posted by drzurkon View Post
    I assume this behavior is an Admin setting in vB
    sadly not. this would require some quite remarkable editing of the code.


  5. #4
    Beginner
    Join Date
    Nov 2008
    Posts
    65
    Thanks
    2,084
    Thanked 248 Times in 38 Posts

    Default

    OK, I used to run a vB site so I did a little research. It is a vB4 problem, the showpost.php script was crippled allegedly for SEO reasons. Fine. Presently all calls to showpost.php on Phun redirect to showthread.php, and this is the main thing that needs to stop -- that and a bit of repair work to the showpost.php script itself, and the page template that builds the link attached to the little post number on the far right side of each posts blue title/date bar.

    I tried various uses of &perpage=1 appended to the showthread.php call and none of them worked, BTW!

    Here is the answer, it is a bit of work but I think the benefit could be worth it!

    Code:
    from   http://www.vbulletin.org/forum/showthread.php?t=247950 
    
    Lynne:
    
    The page showpost.php is all updated to vB4 coding and included in the vB4 
    download package. It has a couple of areas you need to comment out that 1) 
    does a redirect (around line 120) and 2) prints as an xml if it does print out 
    (at the end). So, both those areas need to be commented out. Then, just add 
    the $templater code at the end to spit out a template, add the template name 
    to the $globaltemplates array at the beginning of the page, and create the 
    template and viola! You have a showpost.php page. You would then want 
    to edit the postbit templates to link to the showpost.php page instead of 
    the showthread.php page when you click on the post number.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •