PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   How to get custom breadcrumb with vb integration (http://www.photopost.com/forum/photopost-pro-installation-upgrades/111236-how-get-custom-breadcrumb-vbulletin-integration.html)

wacnstac December 30th, 2004 11:04 PM

How to get custom breadcrumb with vb integration
 
Hello, I would like to make my breadcrumbs convey a little more information than the default photopost/vb integration. See this page: http://www.ohiogamefishing.com/reviews/

I would like breadcrumbs like they show in their reviewpost, photopost, classifieds, etc. Can somebody tell me where to insert this custom code?

Chuck S December 31st, 2004 07:06 AM

modify your childnav function in pp-inc.php to your liking.

wacnstac December 31st, 2004 09:25 AM

Actually I wasn't talking about the PP breadcrumbs but rather how to modify the vb navbar bread crumbs.

wacnstac December 31st, 2004 09:50 AM

Here is an example of how vb does it in announcements.php.

$navbits["$vboptions[forumhome].php"] = $vbphrase['announcements'];

$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');

eval('print_output("' . fetch_template('announcement') . '");');

I'm just not sure of the syntax to do the same in header-inc.php.

sleep747 December 31st, 2004 10:11 AM

That would be a VB mod, since the breadcrumbs would be pulled into the Vb header.

By the looks of the example site you gave, it looks like they just made up a custom VB navbar for the reviews section. I seem to remember seeing the mod on VB.org

wacnstac December 31st, 2004 11:08 AM

I don't think so. I think it's a bit of custom code to setup Navbits in each seperate header-inc.php. One for PP, PP Classifieds, RP, etc.

wacnstac December 31st, 2004 01:01 PM

Never mind I figured it out. Insert this

$navbits[''] = "Photo Gallery";
$navbits = construct_navbits($navbits);

about line 26

Imajine December 31st, 2004 01:13 PM

Very nice integration job!

I have all 3 PhotoPost programs and like to display them in vBulletin like yours. I currently can only get PhotoPost to integrate into the forum, but I'd like the featured photos to display vertically on the right side of the forum. All 3 programs' categories to be listed below the forum's categories.

Is it very hard a thing to do ? How much customizations have you done in order to get your site working so beautifully like that ?

sleep747 December 31st, 2004 01:21 PM

Quote:

Never mind I figured it out. Insert this
OH !!!! :rolleyes: I was misunderstanding what you were looking for.

I had to add the array 3 times in mine for it to work on showphoto & comments.

Right now, I am working on the pagenav in photopost to show the pages as if they originated from my main page IE Index > photo gallery> showphoto

Chuck S January 1st, 2005 08:50 AM

Yep Wac misunderstood what you wanted as I am not use to people asking vb modification questions on the photopost site ;)


All times are GMT -5. The time now is 10:50 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97