i love this script - it is really great.
I manage it to install arfoo in a subfolder of my website, but i would really like to fully integrate it into my current wordpress-website.
For this, I removed the navigation of arfoo (in the template folder) and made a php-include in a single wordpress page. This works fine, but just until someone clicks on a directory page. This forces -for sure- just arfoo to load.
Could you give me a hint how to solve my problem? I do not want to integrate it into an iframe or something else. Arfoo should always load the navigation, header p.p. of wordpress.
Maybe there is a possibility to include the <?php get_header(); ?> (see complete code down under) into arfoo? Do I need a php-require or how can i do it?
Thanks alot.
Templage for the single-wordpress page
adresses-page.php
- Code: Select all
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="left">
**** code to integrate arfooo *****
</div>
<?php get_footer(); ?>

