Quote Originally Posted by MeltDown View Post
What am I missing here??

Objective: Add my Testimonials link to the "More Information" sidebox. You can see that've added the bottom line of code to more_information.php:

PHP Code:
  unset($more_information);

// test if links should display
  
if (DEFINE_PAGE_2_STATUS <= 1) {
    
$more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_2) . '">' BOX_INFORMATION_PAGE_2 '</a>';
  }
  if (
DEFINE_PAGE_3_STATUS <= 1) {
    
$more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_3) . '">' BOX_INFORMATION_PAGE_3 '</a>';
  }
  if (
DEFINE_PAGE_4_STATUS <= 1) {
    
$more_information[] = '<a href="' zen_href_link(FILENAME_PAGE_4) . '">' BOX_INFORMATION_PAGE_4 '</a>';
  }
  if (
DEFINE_DEFAULT_STATUS <= 1) {
    
$more_information[] = '<a href="' index.php?main_page=testimonials_manager_all_testimonials(FILENAME_DEFAULT) . '">' 'Testimonials' '</a>'
But it's not showing up. I've been tweaking this thing forever, assuming the proper configuration is just around the corner.

Could someone who knows what they are doing point me in the right direction?

Thanks!

I took care of this one. (Right or wrong, it WORKS! ) Here's the code I used:
PHP Code:
$more_information[] = '<a href="http://www.beadedlily.com/shop/index.php?main_page=testimonials_manager_all_testimonials">Testimonials</a>'
Tim