
Originally Posted by
bondee
Originally Posted by characterdriven View Post
Originally Posted by Crzipilot View Post
Anyone else have this problem?? I have google analytics installed, and when I go and add an item to the wish list. I get these errors on the bottom of the page..
Warning: main(includes/templates/template_default/un_wishlist/google_analytics.php) [function.main]: failed to open stream: No such file or directory in /homepages/11/d93880114/htdocs/includes/templates/template_default/common/tpl_main_page.php on line 180
Fatal error: main() [function.require]: Failed opening required 'includes/templates/template_default/un_wishlist/google_analytics.php' (include_path='.:/usr/local/lib/php') in /homepages/11/d93880114/htdocs/includes/templates/template_default/common/tpl_main_page.php on line 180.
Ok, I've found a temp solution for this. I changed the line:
PHP Code:
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics') . '/google_analytics.php');
to this:
PHP Code:
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'google_analytics/') . 'google_analytics.php');
Then I copy 'google_analytics.php' from templates/CUSTOM/google_analytics/ folder into every templates/CUSTOM/un_wishlist folders
No error occurs anymore.
Bookmarks