Hi
I have intergrated my forum to coppermine and I wanted t know if i could add some of the forum boards into the gallery
Thanks ;D
In what way ?
Just to show a couple a boards at the top of the coppermine main page ;D
You can do that by using SMF's SSI.php in a custom header within Coppermine.
How do i go about doing this ???
http://www.simplemachines.org/community/index.php?topic=12936.0
http://coppermine-gallery.net/demo/cpg14x/docs/index.htm#admin_theme_include_path_start
Thanks Nibbler ;D
Got this to work but is there anyway of getting it into the body of the coppermine main page and not at the very top:
http://www.cdcoverhideout.com/gallery/index.php
You can reposition the {CUSTOM_HEADER} tag in your theme's template.html. Make sure you keep it before the {GALLERY} tag though.
Hi... take a look at my Gallery... i have it working "inside" of SMF its fully intergrated
www.minidirectory.co.uk
That not 'fully integrated', it's just sitting in an iframe. Please don't hijack other people's threads.
harsh... My database is fully intergrated with the SMF, i was then going to say if that was the look... then post the thread i had the info from....
Is there anyway of making this show in anycontent.php ???
Sure, use an anycontent like this:
<?php
if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');
starttable("100%", "Recent topics");
?>
<tr><td class="tableb" >
<?
require_once '../path_to_smf/SSI.php';
ssi_recentTopics();
?>
</td></tr>
<?php
endtable();
?>
Thanks for that Nibbler, great, is there any chance of limiting it to 10 instead of 16 and also centering it ;D
Set
<td class="tableb" align="center">
and
ssi_recentTopics(10);
Thanks 110% for your help Nibber ;D ;D ;D
Sorry Nibler
Is it possible that I can split anycontent.php into two columns and have:
Recent Topics on the left & Top Boards on the right ;D
you can do anything in anycontent you could do elsewhere using HTML, two colums are usually made using a regular HTML table with two columns. How to split up the output of SMF's ssi.php certainly is off-topic on this board and should be asked on SMF's support board instead. Imo this thread has got cluttered enough already. The initial question was solved, and the second one about anycontent.php as well. All subsequent question (how to work with SMF's ssi.php) should be answered elsewhere off this board.
Ok Thanks Gaugau ;D