![]() |
|
#1
| |||
| |||
|
How can I get my trial version to integrate with my invision power board the way the board on this forum integrates into www.esselbach.com? That is to say, when someone clicks on the link to my forum, the form opens into my site instead of openining in a new page outside my site homepage. I like this cms; I will buy a copy. Thanks. |
|
#2
| |||
| |||
| Originally posted by Manuba: Quote:
For full design integration, you need to customize both the Invision and Storyteller templates. Originally posted by Manuba: Quote:
To change this, you need to use the parameter target="_blank" in the templates. For example: Code: <li><a href="forums/index.php" target="_blank">Forums</a><br /></li> |
|
#3
| |||
| |||
| Quote:
Philipp: Maybe I did not make my comment very clear. I want Invision forum TO OPEN INTO Storyteller, NOT in a new page via target="_blank" Also I DO NOT want Invision to open in a new window via target="_self" Look at your own homepage (www.esselbach.com) and see how your "community" link behaves when clicked --- it opens and integrates into Storyteller. That is how I want Invision to behave. Is this possible? Thanks |
|
#4
| |||
| |||
|
I just found an easy way to integrate Storyteller's header/footer template with Invision Power Board. IPB must be installed in a subdirectory (e.g. yoursite.com/forum) and Storyteller in the root directory to get this working. Open sources/functions.php in an editor and replace: Code: $this->do_headers();
print $ibforums->skin['template'];
exit;
Code: require("../templates/site_header.tmp.php");
$EST_TEMPLATE = str_replace("img src="", "img src="../", $EST_TEMPLATE);
$EST_TEMPLATE = str_replace("a href="", "a href="../",$EST_TEMPLATE);
echo $EST_TEMPLATE;
$this->do_headers();
print $ibforums->skin['template'];
require("../templates/site_footer.tmp.php");
$EST_TEMPLATE = str_replace("img src="", "img src="../", $EST_TEMPLATE);
$EST_TEMPLATE = str_replace("a href="", "a href="../",$EST_TEMPLATE);
echo $EST_TEMPLATE;
exit;
|
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to integrate mcimagemanager? | error | General Questions | 2 | 10-12-2008 07:52 PM |
| Integrate Storyteller CMS skin into forum. | t3chb0y | Version 1.x | 6 | 07-02-2006 07:49 PM |
| Invision Power Board 2.0.0 Integrationsscript | Philipp | Version 1.x | 0 | 06-27-2004 01:15 PM |
| Invision Power Board 2.0.0 integration script | Philipp | Version 1.x | 0 | 06-27-2004 01:12 PM |
| Updated Invision Board integration scripts | Philipp | Version 1.x | 0 | 03-24-2004 02:41 PM |