SB, thanks for your response
According to "Dates Reminder" install docs, the following file is being overriden.
includes/templates/template_default/tpl_account_default.php.
HOWEVER, my tpl_account_default.php wasn't located there; it was located here: includes/templates/template_default/templates/tpl_account_default.php
What I chose to do was leave the original file in tact; copied the orig file, added the line (below) as specified in install docs and placed it in includes/templates/CUSTOM/templates because I had other *.tpl files there. Program seems to work just fine; except for the breadcrumbs problem.
I searched "Developer's Tool Kit" for NAVBAR_TITLE_1 and *_2 and found the following located at includes/modules/pages/account_dates/header_php.php:
Line #106 : $breadcrumb->add(NAVBAR_TITLE_1, zen_href_link(FILENAME_ACCOUNT_DATES, '', 'SSL'));
I renamed NAVBAR_TITLE_1, but then the program itself failed to load. So I undid it, and program loads again. I haven't a clue where to locate the label as you say for Dates Reminder. Technically, I didn't override anything. I use FileZilla directory comparison before installing every module to see where files are being placed and if anything's being overriden. If something's being overriden, I back up that file. For dates reminder program, I didn't override the file, I copied it to my custom folder, and added the lines below. But like I said, I haven't a clue regarding constant, label, and where to even locate it for this program.
According to Numinix docs:
If you have edited this file previously, please use winmerge or add the following line above the </ul> on line 63:
<?php
//start numinix dates reminder mod
if(NUMINIX_DATES_MOD_REMINDER=='true'){
?>
<li><?php echo ' <a href="' . zen_href_link(FILENAME_ACCOUNT_DATES, '', 'SSL') . '">' . ADD_DATES . '</a>'; ?></li>
<?php
}
//end numinix dates reminder mod
?>


Reply With Quote
