Hi Guys,
I'm still trying to get some help for this, if any one has any clue of it....
Here's some more info of it'll help figuring it out...
At catalog side of ACCOUNT/EDIT.TPL
I have the following
================================================================================
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
<!--
<div class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
<?php } ?>
</div>
-->
================================================================================
with this, when I view the source of the actual page on a browser I get the following.
================================================================================
blah blah blah
<div id="content"><!--
<div class="breadcrumb">
<a href="
http://mydomain.com/index.php?route=com ... e">Home</a>
» <a href="
http://mydomain.com/index.php?route=acc ... Account</a>
» <a href="
http://mydomain.com/index.php?route=account/edit">Edit Information</a>
</div>
-->
blah blah blah
================================================================================
This is what I expect and want to end up with....
But for the ACCOUNT/DOWNLOAD.TPL also at the catalog side, I end up with something different....
I've the following in download.tpl
================================================================================
<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
<!--
<div class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
<?php } ?>
</div>
-->
================================================================================
This is exactly same as ACCOUNT/EDIT.TPL above
But I end up with the following at the actual page source on a browser...
================================================================================
blah blah blah
<div id="content"> <div class="breadcrumb">
<a href="
http://mydomain.com/index.php?route=com ... e">Home</a>
» <a href="
http://mydomain.com/index.php?route=acc ... Account</a>
» <a href="
http://mydomain.com/index.php?route=acc ... wnloads</a>
</div>
blah blah blah
================================================================================
Does any one have any idea why ACCOUNT/DOWNLOAD.TPL is giving me this issue???
And funny thing is, if I log on to the site and make a purchase of a downloadable product and go to the admin side and change the sales status to "complete" When I get back to the user side of the ACCOUNT/DOWNLOAD.TPL page, I no longer get the breadcrumb... Seems it goes away as I want it to if a downloadable product has been purchased and status set to complete, but in any other situations it just says even thoe I have it coded not to show up.... I've even tried it by actually deleting the breadcrumb coding from the page, but still same thing...
Oh and the message you get when you have not made any downloadable purchase...
'You have not made any previous downloadable orders!'
From the language file I see the coding is
$_['text_empty'] = 'You have not made any previous downloadable orders!';
But there's no 'text_empty' in the DOWNLOAD.TPL. So how is this being displayed????