this contribution is to share links with other. You can insert in the partner.php file links from your linksharing partners. In the link_us.php people will find 6 different codes for textlinks. Also you will find a new box, in there the 2 links inside for the partner.php and the link_us.php Demopage: http://www.spezi-hosting.de/catalog/ Please edit the link_us.php to change the links and the linktext to yours. After this is done, copy the files in their folders and change/insert the following code. In catalog/includes/column_left.php oder catalog/includes/column_right.php where you want your box, insert: require(DIR_WS_BOXES . 'partner.php'); ____________________________________________________ In catalog/includes/filenames.php insert: define('FILENAME_WEBDESIGN', 'partner.php'); define('FILENAME_WEBDESIGN', 'link_us.php'); ____________________________________________________ If you have the headertagcontroller include, open: catalog/includes/header_tags.php search for: } else { $the_title= HEAD_TITLE_TAG_PRODUCT_REVIEWS_INFO; } break; Insert the following code after it: // PARTNER.PHP case ( strstr($_SERVER['PHP_SELF'],'partner.php') or strstr($PHP_SELF,'partner.php') ): if ( HEAD_DESC_TAG_PARTNER!='' ) { if ( HTDA_PARTNER_ON=='1' ) { $the_desc= HEAD_DESC_TAG_PARTNER . ' ' . HEAD_DESC_TAG_ALL; } else { $the_desc= HEAD_DESC_TAG_PARTNER; } } else { $the_desc= HEAD_DESC_TAG_ALL; } if ( HEAD_KEY_TAG_PARTNER!='' ) { if ( HTKA_PARTNER_ON=='1' ) { $the_key_words= HEAD_KEY_TAG_PARTNER . ' ' . HEAD_KEY_TAG_ALL; } else { $the_key_words= HEAD_KEY_TAG_PARTNER; } } else { $the_key_words= HEAD_KEY_TAG_ALL; } if ( HEAD_TITLE_TAG_PARTNER!='' ) { if ( HTTA_PARTNER_ON=='1' ) { $the_title= HEAD_TITLE_TAG_ALL . ' ' . HEAD_TITLE_TAG_PARTNER; } else { $the_title= HEAD_TITLE_TAG_PARTNER; } } else { $the_title= HEAD_TITLE_TAG_ALL; } break; // LINK_US.PHP case ( strstr($_SERVER['PHP_SELF'],'link_us.php') or strstr($PHP_SELF,'link_us.php') ): if ( HEAD_DESC_TAG_LINK_US!='' ) { if ( HTDA_LINK_US_ON=='1' ) { $the_desc= HEAD_DESC_TAG_LINK_US . ' ' . HEAD_DESC_TAG_ALL; } else { $the_desc= HEAD_DESC_TAG_LINK_US; } } else { $the_desc= HEAD_DESC_TAG_ALL; } if ( HEAD_KEY_TAG_LINK_US!='' ) { if ( HTKA_LINK_US_ON=='1' ) { $the_key_words= HEAD_KEY_TAG_LINK_US . ' ' . HEAD_KEY_TAG_ALL; } else { $the_key_words= HEAD_KEY_TAG_LINK_US; } } else { $the_key_words= HEAD_KEY_TAG_ALL; } if ( HEAD_TITLE_TAG_LINK_US!='' ) { if ( HTTA_LINK_US_ON=='1' ) { $the_title= HEAD_TITLE_TAG_ALL . ' ' . HEAD_TITLE_TAG_LINK_US; } else { $the_title= HEAD_TITLE_TAG_LINK_US; } } else { $the_title= HEAD_TITLE_TAG_ALL; } break; _________________________________________________________ Open: catalog/includes/languages/german/header_tags.php Insert at the end of the file before "?>" the following code: // partner.php define('HTTA_PARTNER_ON','1'); define('HTKA_PARTNER_ON','1'); define('HTDA_PARTNER_ON','1'); define('HEAD_TITLE_TAG_PARTNER','partner pages'); define('HEAD_DESC_TAG_PARTNER','Partner Seiten'); define('HEAD_KEY_TAG_PARTNER','Partner Seiten'); // link_us.php define('HTTA_LINK_US_ON','1'); define('HTKA_LINK_US_ON','1'); define('HTDA_LINK_US_ON','1'); define('HEAD_TITLE_TAG_LINK_US','textlinks'); define('HEAD_DESC_TAG_LINK_US','textlinks'); define('HEAD_KEY_TAG_LINK_US','textlinks'); __________________________________________________________ If you have the headertagcontroller not installed, change the following files: catalog/partner.php catalog/link_us.php Open and remove: