I currently have mambo and gallery working together reasonably well thanks to the module that was posted here.
I'm now doing some customization to the site and I have a question that hopefully won't be too difficult to answer.
One thing I've noticed with the current integration of the two applications is that when you go to the embedded gallery in mambo, mambo's breadcrumbs don't work anymore; it only displays the top level page. That's not the problem, we can work around that!
What I would like to do is display the Gallery breadcrumbs in the mambo wrapper. I have a separate mambo template for the Gallery section of the site and I thought I would be able to replace the current mambo breadcrumb code:
<div id="pathway">
<?php mosPathWay(); ?>
</div>
With something like this:
<div id="pathway">
<?php include ("gallery2/layouts/matrix/templates/pathbar.tpl"); ?>
</div>
But this doesn't work. It shows the contents of the file instead of rendering the breadcrumb. Now, I'm not a programmer (I'm learning a lot of this as I go), so I don't really know if I have used the proper syntax or if what I am trying to do is impossible (will this file work if Gallery doesn't call it?).
Anyone have any ideas? Thanks in advance!