Yes, we will share it in a blog post after it has been through a few months of testing. We still have a few bugs to work out, mostly based on the inconsistent ways that developers code URLs (relative v. absolute paths; hard coded URLs v. phrased URLs, etc.)
Not being a very good PHP programmer, I can't complain. But I do find, after many years of running vB, that a lot of add-ons and hacks are just "hacked together" and can break things. Also, a lot of the HTML in the vB code base has been deprecated over the years (causing some CSS issues). We don't want to share anything that is "just hacked" and can break other's boards.
Basically, what we did it is pretty simple but tricky if you are not comfy with modifying HTML and PHP:
- Pick a clean WP theme that you like.
- Copy it and and use that copy for your development.
- Copy the vB navbar template as navbar_blog (optional, so you can modify if you need to)
- Add a new WP PHP theme file called navbar.php (or whatever)
- Put vB navbar PHP code in that WP theme file.
- Find the same area in the WP theme files (index, singlepage, etc.) and replace the WP code with the vB navbar code (we use a require_once() php include statement).
- Do something similar for the footer code.
- Add your favorite HTML headerincludes to the WP header.php theme file.
Notes:
- In our configuration , as you can see, the root directory is the forum and WP is in a directory.
- If you can't get the vB links to work properly in the navbar, you can copy those PHP over to the WP directory until you get things sorted out in the vB templates.
- This is only a "look and feel" integration. There is no cross posts, shared user data etc. That is exactly what we wanted.
- Be careful with SEO add-ons. They can break things if you are not careful.