Zen Cart Logo
Forums / Upgrading from 1.3.x to 1.3.9 / Product info missing...

Product info missing...

Locked

Views: 841

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
28 Apr 2010, 11:11 PM
#1
cycleaware avatar

cycleaware

New Zenner

Join Date:
Jan 2004
Posts:
26
Plugin Contributions:
1

Product info missing...

Hi all,

This is referring to a test site that I have setup per upgrade process...the site looks good in most respects (some ez page content is missing), the main problem currently on my plate, the product pages are empty. The admin view shows all the html code and the preview of the product page in admin looks as it should. the product listings in the front end are correct and showing both images and text, however when you click on a product to go to its page, nothing populates (except the next/previos product buttons...).

Any ideas?

Fun Facts:

DB upgrade from zc_install succeeded except for some "split tax keys" (I do not know what this refers too...)

all functionality has not been tested...still working on further testing...If anyone happens to know where the product html is generated (which php file) that would also help...

28 Apr 2010, 11:21 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Product info missing...

Check and see if you are getting any error logs in your /cache directory ...

If you switch to the Classic Template does it suddenly work?

29 Apr 2010, 7:23 PM
#3
cycleaware avatar

cycleaware

New Zenner

Join Date:
Jan 2004
Posts:
26
Plugin Contributions:
1

Re: Product info missing...

Solved! Thanks for the pointers!

29 Apr 2010, 11:42 PM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Product info missing...

What was the final solution that resolved the problem? :smile:

17 Jun 2010, 6:31 PM
#5
dizzyfish avatar

dizzyfish

New Zenner

Join Date:
Jun 2010
Posts:
13
Plugin Contributions:
0

Re: Product info missing...

I found this thread on a search as I was not sure why my ez-pages did not work. After trying with the default template I saw it was due to a change that was not in most templates. Only templates by Clyde Jones seemed to work correctly. By now there are others that are updated.

It was not much of a search to discover that this file had to be changed in all older templates: tpl_ezpages_bar_header.php

This file is located in: includes/templates/YOUR-TEMPLTE/templates

This is the code that should, I hope, resolve the issue for anyone else looking for an answer. Just cut and paste over the old code:

<?php if (sizeof($var_linksList) >= 1) { ?> <div id="navEZPagesTop"> <ul> <?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) { ?> <li><a href="<?php echo $var_linksList[$i]['link']; ?>"><span><?php echo $var_linksList[$i]['name']; ?></span></a></li> <?php } // end FOR loop ?> </ul> </div> <?php } ?>