The mini-cart will not display the proper values because those are static HTML pages (not dynamic PHP pages) and will not read the data.
You should never have any links from your PHP pages back to the HTML pages. The HTML pages are for Search Engine indexing and are entry points for the users. Once they ahve added an item to the cart, then they are in the dynamic part of the site. At that point they should stay there.
If you do have links from your PHP pages back to your HTML pages, then you should edit your templates to use the proper linking variables.
|