Index: /mods/wpsg_mod_produktartikel.class.php
===================================================================
--- /mods/wpsg_mod_produktartikel.class.php	(revision 6049)
+++ /mods/wpsg_mod_produktartikel.class.php	(revision 6052)
@@ -1,6 +1,7 @@
 <?php
 
+
 	/**
-	 * Modul der die Produkte als eingene Artikeltypen speichert
+	 * Modul der die Produkte als eigene Artikeltypen speichert
 	 */
 	class wpsg_mod_produktartikel extends wpsg_mod_basic 
@@ -14,5 +15,5 @@
 		
 		/**
-		 * Costructor
+		 * Constructor
 		 */
 		public function __construct()
@@ -228,10 +229,32 @@
 		public function wpsg_add_pages()
 		{
-		
+
 			$callback = add_submenu_page('wpsg-Admin', __("Produktkategorien", "wpsg"), __("Produktkategorien", "wpsg"), 'wpsg_produkt', 'wpsg-Productcategories', 'callback');
 			
 			add_action("load-".$callback, function() { header('Location: '.admin_url('edit-tags.php?taxonomy=wpsgtax')); exit; } );
+
+			add_filter('parent_file', array($this, 'setParentmenu'), 10, 1);
+			add_filter('submenu_file', array($this, 'setSubmenu'), 10, 1);
 				
 		} // public function wpsg_add_pages()
+		
+		function setParentmenu($parent_file) {
+		
+			//http://shop4.home/wp-admin/admin.php?page=wpsg-Admin
+			$parent_file = 'wp-admin/admin.php?page=wpsg-Admin';
+			$parent_file = 'wpsg-Admin';
+
+			return $parent_file;
+		}
+		
+		function setSubmenu($submenu_file) {
+		
+			//$submenu_file = 'wp-admin/admin.php?page=wpsg-Productcategories';
+			//edit-tags.php?taxonomy=wpsgtax
+			if ($submenu_file == 'edit-tags.php?taxonomy=wpsgtax')
+				$submenu_file = 'wpsg-Productcategories';
+
+			return $submenu_file;
+		}
 		
 		public function admin_includes() 
@@ -523,5 +546,5 @@
 					'rewrite' => array('slug' => $this->shop->get_option('wpsg_mod_produktartikel_pathkey')),
 					'show_ui' => $show_ui,
- 					'show_in_menu' => false,
+ 					'show_in_menu' => true,
 					'taxonomies' => array('wpsgtax'),
 					'has_archive' => true,
Index: /views/mods/mod_export/profil.phtml
===================================================================
--- /views/mods/mod_export/profil.phtml	(revision 6049)
+++ /views/mods/mod_export/profil.phtml	(revision 6052)
@@ -30,5 +30,5 @@
                 
                 <?php echo wpsg_drawForm_Text('Feld-Trennzeichen', $this->view['profil']['field_delimiter'], 'field_delimiter', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
-                <?php echo wpsg_drawForm_Text('Feld-Begrenzungs', $this->view['profil']['field_enclosure'], 'field_enclosure', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
+                <?php echo wpsg_drawForm_Text('Feld-Begrenzung', $this->view['profil']['field_enclosure'], 'field_enclosure', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
                 <?php echo wpsg_drawForm_Text('Maskierungs-Zeichen', $this->view['profil']['field_escape'], 'field_escape', array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
                 
@@ -59,5 +59,5 @@
             <div class="wpsg_mod_export_format wpsg_mod_export_format_<?php echo wpsg_mod_export::FORMAT_CSV; ?>" style="display:<?php echo (($this->view['profil']['format'] == wpsg_mod_export::FORMAT_CSV)?'block':'none'); ?>">
                 
-                <?php echo wpsg_drawForm_Checkbox('csv_fieldnames', __('Spaltennamen in erster Spalte', 'wpsg'), $this->view['profil']['csv_fieldnames'], array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
+                <?php echo wpsg_drawForm_Checkbox('csv_fieldnames', __('Spaltennamen in erster Zeile', 'wpsg'), $this->view['profil']['csv_fieldnames'], array('inlineEdit' => true, 'inlineEdit_url' => $inlineEdit_url)); ?>
                 
             </div>
Index: /views/mods/mod_produktartikel/produkt_addedit_content.phtml
===================================================================
--- /views/mods/mod_produktartikel/produkt_addedit_content.phtml	(revision 6049)
+++ /views/mods/mod_produktartikel/produkt_addedit_content.phtml	(revision 6052)
@@ -19,5 +19,5 @@
 	
 	<br />
-	<a href="<?php echo WPSG_URL_WP; ?>wp-admin/aedit-tags.php?taxonomy=wpsgtax"><span class="wpsg-glyphicon glyphicon glyphicon-wrench"></span><?php echo __('Zur Kategorieverwaltung', 'wpsg'); ?></a>
+	<a href="<?php echo WPSG_URL_WP; ?>wp-admin/edit-tags.php?taxonomy=wpsgtax"><span class="wpsg-glyphicon glyphicon glyphicon-wrench"></span><?php echo __('Zur Kategorieverwaltung', 'wpsg'); ?></a>
 	
 <?php echo wpsg_drawForm_AdminboxEnd(); ?>
