Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mmotala10

Pioneers
  • Posts

    24
  • Joined

  • Last visited

Reputation Activity

  1. Like
    mmotala10 reacted to kymation in [Addon} Modular Front Page   
    I can only read what you've given me. I'm not psychic. If that's not the real error message, and I suspect it's not, then please in future use cut and paste to put the real error message in your post.
    It appears that recent versions of EDGE do not contain the tep_customer_greeting() function. Please add this code to the bottom of catalog/includes/modules/content/front_page/templates/cm_fp_customer_greeting.php:
    //// // Return a customer greeting function tep_customer_greeting() { global $customer_id, $customer_first_name; if (tep_session_is_registered('customer_first_name') && tep_session_is_registered('customer_id')) { $greeting_string = sprintf(TEXT_GREETING_PERSONAL, tep_output_string_protected($customer_first_name), tep_href_link(FILENAME_PRODUCTS_NEW)); } else { $greeting_string = sprintf(TEXT_GREETING_GUEST, tep_href_link(FILENAME_LOGIN, '', 'SSL'), tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); } return $greeting_string; } That should fix this problem. I have no idea how many more things have been removed that I depended on when this code was written, so you may find more things that don't work.
    Regards
    Jim
×
×
  • Create New...