Marktplatz - Eine große Auswahl an neuen und hilfreichen Modulen sowie modernen Templates für die modified eCommerce Shopsoftware
Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)

    noRiddle (revilonetz)

    • Experte
    • Beiträge: 13.743
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #735 am: 18. Mai 2020, 16:04:30
    Meine Mail an dich wurde von deinem E-Mail-Provider als Spam abgelehnt. Ich hatte dir eine gezippte Datei angehängt.
    Hast du eine alternative Mail-Adresse ?

    Gruß,
    noRiddle

    meybis

    • Neu im Forum
    • Beiträge: 8
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #736 am: 21. März 2021, 04:31:46
    Hallo, ich weis ein Alter Beitrag aber ich habe da das Problem das ich Zwar wenn ich den Artikel vor mir Habe das Wunschtext Feld Habe aber leider wird mir nur das im Warenkorb angezeigt und auch in der Bestellung nicht...

    Woran könnte das liegen hat jemand eine Idee?

    Mfg

    Roberto75

    • Viel Schreiber
    • Beiträge: 833
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #737 am: 21. März 2021, 12:26:48
    Es könnte sein, dass deine Version mit Ioncube verschlüsselt ist. Wenn das dann auf einer anderen URL eingesetzt wird, funktioniert nichts mehr. Das alte wird außerdem nicht mehr gepflegt. Es gibt das funktionsfähige Modul aber auch nicht verschlüsselt zu erwerben.

    Gruß
    Robert

    Tronicpixel

    • Neu im Forum
    • Beiträge: 12
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #738 am: 12. April 2022, 22:30:58
    Hallo Leute :-)

    Hab mir heute das Modul rein gemacht. Funktioniert auch fast alles. Was mir gerade Probleme macht ist die shopping_cart.php der Bereich mit den Sessions für die Restore function. Er gibt mir zwar den Fehler aus, jedoch finde ich es einfach nicht bzw stelle ich mich einfach dumm an..

    Zitat
    [2022-04-12 21:48:08]   [error]   [modified]   [pid:54462]   ERROR found for URL: /   {}   {}
    [2022-04-12 21:48:08]   [error]   [modified]   [pid:54462]   syntax error, unexpected 'else' (T_ELSE) in File: httpdocs/includes/classes/shopping_cart.php on Line: 196   {}   {}

    die Bearbeitete shopping_cart.php bzw geht es um die Function restore_contents(). Im Anhang der ganze Code als txt da zum posten hier zu lang:

    Code: PHP  [Auswählen]
      function restore_contents() {
        if (!isset($_SESSION['customer_id'])) {
          return false;
        }
       
        $products_list = array();
       
        // insert current cart contents in database
        if (is_array($this->contents)) {
          reset($this->contents);
          foreach ($this->contents as $products_id => $data) {
            if ($this->check_products_status_permission($products_id) === true) {
              $qty = $this->contents[$products_id]['qty'];
              $product_query = xtc_db_query("SELECT products_id,
                                                    customers_basket_quantity
                                               FROM "
    .$this->table_basket."
                                              WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                                AND products_id = '"
    .xtc_db_input($products_id)."'");
              if (xtc_db_num_rows($product_query) < 1) {
                $sql_data_array = array('customers_id' => (int)$_SESSION['customer_id'],
                                        'products_id' => $products_id,
                                        'customers_basket_quantity' => (int)$qty,
                                        'customers_basket_date_added' => 'now()'
                                       );
                //new module support    
                $sql_data_array = $this->shoppingCartModules->restore_contents_products_db($sql_data_array,$products_id,$this->table_basket,$qty,$this->type);
                xtc_db_perform($this->table_basket, $sql_data_array);

                if (isset($this->contents[$products_id]['attributes'])) {
                  reset($this->contents[$products_id]['attributes']);
                  foreach ($this->contents[$products_id]['attributes'] as $option => $value) {
                    $sql_data_array = array('customers_id' => (int)$_SESSION['customer_id'],
                                            'products_id' => $products_id,
                                            'products_options_id' => (int)$option,
                                            'products_options_value_id' => (int)$value
                                           );
                                                                               
    //BOF TEXTFELD
                  $options_values_name = xtc_oe_get_options_values_name($value,'');
                  $textfeld = ($options_values_name == 'TEXTFELD') ? trim($_SESSION['cart_textfeld'. $products_id][$value]) : '';
                  $sql_data_array['products_options_value_text'] = xtc_db_prepare_input($textfeld);
    //EOF TEXTFELD                                     
                                                                               
                                                                               
                                                                               
                    //new module support    
                    $sql_data_array = $this->shoppingCartModules->restore_contents_attributes_db($sql_data_array,$products_id,$value,$this->type);
                    xtc_db_perform($this->table_basket_attributes, $sql_data_array);
                  }
                }
              } else {
                /* use this code to add up saved qty
                $product = xtc_db_fetch_array($product_query);

                $qty += $product['customers_basket_quantity'];
                $this->contents[$products_id] = array ('qty' => $qty);
                */

                xtc_db_query("UPDATE ".$this->table_basket."
                                 SET customers_basket_quantity = '"
    .(int)$qty."'
                               WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                 AND products_id = '"
    .xtc_db_input($products_id)."'");
              }
         
              $products_list[] = $products_id;
            } else {
              // no permission
              $this->remove($products_id);
            }
          }
        }

        // restore saved content
        $_SESSION['old_customers_basket_'.$this->type] = false;
        $products_query = xtc_db_query("SELECT products_id,
                                               customers_basket_quantity
                                          FROM "
    .$this->table_basket."
                                         WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                           AND products_id NOT IN ('"
    .implode("', '", $products_list)."')
                                      ORDER BY customers_basket_id"
    );
        if (xtc_db_num_rows($products_query) > 0) {
          while ($products = xtc_db_fetch_array($products_query)) {
            if ($this->check_products_status_permission($products['products_id']) === true) {
              $this->contents[$products['products_id']] = array ('qty' => (int)$products['customers_basket_quantity']);
               
              //new module support
              $this->shoppingCartModules->restore_contents_products_session($products,$this->table_basket,$this->type);
               
              // attributes
              $attributes_query = xtc_db_query("SELECT products_options_id,
                                                       products_options_value_id
                                                  FROM "
    .$this->table_basket_attributes."
                                                 WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                                   AND products_id = '"
    .xtc_db_input($products['products_id'])."'
                                              ORDER BY customers_basket_attributes_id"
    );
                                                                                     
    //BOF TEXTFELD - Restore $_SESSION['cart_textfeld'

          $textfeld= array(); //Fix v.1.00c
          while ($attributes = xtc_db_fetch_array($attributes_query))
          {
            $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id'];
            $value_text = $attributes['products_options_value_text'];
            if ($value_text != '')
            {
              unset($_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']]); //Fix v.1.00c
              $_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']] = $attributes['products_options_value_text'];
            }
    // = $textfeld;

            unset($textfeld);
                    }
                                                             
                    //EOF TEXTFELD
                   
              if (xtc_db_num_rows($attributes_query) > 0) {
                while ($attributes = xtc_db_fetch_array($attributes_query)) {
                  $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id'];
                }
               
                //new module support
                $this->shoppingCartModules->restore_contents_attributes_session($products,$this->table_basket_attributes,$this->type);
               
                if (ATTRIBUTES_VALID_CHECK == 'true' && !$this->validate_attributes($products['products_id'],$this->contents[$products['products_id']]['attributes'], 'restore_contents')) {
                  $this->remove($products['products_id']); //TODO info message
                }
              }
              if ($this->get_quantity($products['products_id']) > 0) {
                $_SESSION['old_customers_basket_'.$this->type] = true;
              }
                    }
            } else {
              // no permission
              $this->remove($products['products_id']);
            }
          }
        }
        $this->cleanup();

        // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure
        $this->cartID = $this->generate_cart_id();
      }
     

    die damalige function sah so aus
    Code: PHP  [Auswählen]
    function restore_contents() {
        if (!isset ($_SESSION['customer_id'])) {
          return false;
        }

        // insert current cart contents in database
        if (is_array($this->contents)) {
          reset($this->contents);
          while (list ($products_id,) = each($this->contents)) {
            $qty = $this->contents[$products_id]['qty'];
            $product_query = xtc_db_query("select products_id
                                             from "
    .TABLE_CUSTOMERS_BASKET."
                                            where customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                              and products_id = '"
    .xtc_db_input($products_id)."'");
            if (!xtc_db_num_rows($product_query)) {
              $sql_data_array = array('customers_id' => $_SESSION['customer_id'],
                                      'products_id' => $products_id,
                                      'customers_basket_quantity' => $qty,
                                      'customers_basket_date_added' => date('Ymd')
                                     );
              xtc_db_perform(TABLE_CUSTOMERS_BASKET, $sql_data_array);

              if (isset ($this->contents[$products_id]['attributes'])) {
                reset($this->contents[$products_id]['attributes']);
                while (list ($option, $value) = each($this->contents[$products_id]['attributes'])) {
                  $sql_data_array = array('customers_id' => (int)$_SESSION['customer_id'],
                                          'products_id' => $products_id,
                                          'products_options_id' => (int)$option,
                                          'products_options_value_id' => (int)$value
                                     );  
    //BOF TEXTFELD
                  $options_values_name = xtc_oe_get_options_values_name($value,'');
                  $textfeld = ($options_values_name == 'TEXTFELD') ? trim($_SESSION['cart_textfeld'. $products_id][$value]) : '';
                  $sql_data_array['products_options_value_text'] = xtc_db_prepare_input($textfeld);
    //EOF TEXTFELD
                  xtc_db_perform(TABLE_CUSTOMERS_BASKET_ATTRIBUTES, $sql_data_array);
                }
              }
            } else {
              xtc_db_query("update ".TABLE_CUSTOMERS_BASKET."
                               set customers_basket_quantity = '"
    .xtc_db_input($qty)."'
                             where customers_id = '"
    .(int)$_SESSION['customer_id']."'
                               and products_id = '"
    .xtc_db_input($products_id)."'");
            }
          }
        }

        // reset per-session cart contents, but not the database contents
        $this->reset(false);
        $products_query = xtc_db_query("select products_id,
                                               customers_basket_quantity
                                          from "
    .TABLE_CUSTOMERS_BASKET."
                                         where customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                      order by customers_basket_id"
    );

        while ($products = xtc_db_fetch_array($products_query)) {
          $this->contents[$products['products_id']] = array ('qty' => (int)$products['customers_basket_quantity']);
          // attributes
          $attributes_query = xtc_db_query("select products_options_id,
                                                   products_options_value_text,
                                                   products_options_value_id
                                              from "
    .TABLE_CUSTOMERS_BASKET_ATTRIBUTES."
                                             where customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                               and products_id = '"
    .xtc_db_input($products['products_id'])."'
                                          order by customers_basket_attributes_id"
    );

    //BOF TEXTFELD - Restore $_SESSION['cart_textfeld'

          $textfeld= array(); //Fix v.1.00c
          while ($attributes = xtc_db_fetch_array($attributes_query))
          {
            $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id'];
            $value_text = $attributes['products_options_value_text'];
            if ($value_text != '')
            {
              unset($_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']]); //Fix v.1.00c
              $_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']] = $attributes['products_options_value_text'];
            }
    // = $textfeld;

            unset($textfeld);
    //EOF TEXTFELD

          }
        }
        $this->cleanup();
      }

    voodoopupp

    • Fördermitglied
    • Beiträge: 1.852
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #739 am: 13. April 2022, 08:57:57
    Sorry, aber die beiden beigefügten Dateien - was soll das denn genau sein!?
    Die erste die alte, die mit "_NEU" dagegen die neue nach der Erweiterung?

    Da ist aber die komplette Datei anders, nicht nur ein paar Ergänzungen.....das sieht eher so aus, dass du in einen alten Shop eine komplett neue Datei eingebaut hast, die unter Umständen auch auf Funktionen & Variablen zugreift, die es in deiner Shopversion noch gar nicht gab....

    Grüße
    Dominik

    Tronicpixel

    • Neu im Forum
    • Beiträge: 12
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #740 am: 13. April 2022, 09:12:12
    Hey,

    "Alt" ist der Stand des Moduls, also glaube Shop Version 1.xx und "Neu" ist 2.xx also die aktuellste Version, wie mein Shop.

    Ich habe das Problem mit dem Error zwar behoben, jedoch übernimmt er die Sessions nicht so wirklich.
    Mein Problem war selbst verursacht, habe die betreffende Stelle mit also doppelt eingefügt, hätte aber einen gewissen Teil ersetzen müssen.

    Wie du sagst, es ist gut möglich das was nicht passt, stand meiner shopping_cart.php ist jetzt folgender. Funktioniert alles, bis auf die Session Speicherung des Textfelds.  Eventuell konnte das ja schon jemand lösen ? :-)

    Code: PHP  [Auswählen]
    <?php
       
    /
      function restore_contents() {
        if (!isset($_SESSION['customer_id'])) {
          return false;
        }
       
        $products_list = array();
       
        // insert current cart contents in database
        if (is_array($this->contents)) {
          reset($this->contents);
          foreach ($this->contents as $products_id => $data) {
            if ($this->check_products_status_permission($products_id) === true) {
              $qty = $this->contents[$products_id]['qty'];
              $product_query = xtc_db_query("SELECT products_id,
                                                    customers_basket_quantity
                                               FROM "
    .$this->table_basket."
                                              WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                                AND products_id = '"
    .xtc_db_input($products_id)."'");
              if (xtc_db_num_rows($product_query) < 1) {
                $sql_data_array = array('customers_id' => (int)$_SESSION['customer_id'],
                                        'products_id' => $products_id,
                                        'customers_basket_quantity' => (int)$qty,
                                        'customers_basket_date_added' => 'now()'
                                       );
                //new module support    
                $sql_data_array = $this->shoppingCartModules->restore_contents_products_db($sql_data_array,$products_id,$this->table_basket,$qty,$this->type);
                xtc_db_perform($this->table_basket, $sql_data_array);

                if (isset($this->contents[$products_id]['attributes'])) {
                  reset($this->contents[$products_id]['attributes']);
                  foreach ($this->contents[$products_id]['attributes'] as $option => $value) {
                    $sql_data_array = array('customers_id' => (int)$_SESSION['customer_id'],
                                            'products_id' => $products_id,
                                            'products_options_id' => (int)$option,
                                            'products_options_value_id' => (int)$value
                                           );
                                                                               //BOF TEXTFELD
                  $options_values_name = xtc_oe_get_options_values_name($value,'');
                  $textfeld = ($options_values_name == 'TEXTFELD') ? trim($_SESSION['cart_textfeld'. $products_id][$value]) : '';
                  $sql_data_array['products_options_value_text'] = xtc_db_prepare_input($textfeld);
    //EOF TEXTFELD
                    //new module support    
                    $sql_data_array = $this->shoppingCartModules->restore_contents_attributes_db($sql_data_array,$products_id,$value,$this->type);
                    xtc_db_perform($this->table_basket_attributes, $sql_data_array);
                  }
                }
              } else {
                /* use this code to add up saved qty
                $product = xtc_db_fetch_array($product_query);

                $qty += $product['customers_basket_quantity'];
                $this->contents[$products_id] = array ('qty' => $qty);
                */

                xtc_db_query("UPDATE ".$this->table_basket."
                                 SET customers_basket_quantity = '"
    .(int)$qty."'
                               WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                 AND products_id = '"
    .xtc_db_input($products_id)."'");
              }
         
              $products_list[] = $products_id;
            } else {
              // no permission
              $this->remove($products_id);
            }
          }
        }

        // restore saved content
        $_SESSION['old_customers_basket_'.$this->type] = false;
        $products_query = xtc_db_query("SELECT products_id,
                                               customers_basket_quantity
                                          FROM "
    .$this->table_basket."
                                         WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                           AND products_id NOT IN ('"
    .implode("', '", $products_list)."')
                                      ORDER BY customers_basket_id"
    );
        if (xtc_db_num_rows($products_query) > 0) {
          while ($products = xtc_db_fetch_array($products_query)) {
            if ($this->check_products_status_permission($products['products_id']) === true) {
              $this->contents[$products['products_id']] = array ('qty' => (int)$products['customers_basket_quantity']);
               
              //new module support
              $this->shoppingCartModules->restore_contents_products_session($products,$this->table_basket,$this->type);
               
              // attributes
              $attributes_query = xtc_db_query("SELECT products_options_id,
                                                       products_options_value_id
                                                  FROM "
    .$this->table_basket_attributes."
                                                 WHERE customers_id = '"
    .(int)$_SESSION['customer_id']."'
                                                   AND products_id = '"
    .xtc_db_input($products['products_id'])."'
                                              ORDER BY customers_basket_attributes_id"
    );
             
                      if (xtc_db_num_rows($attributes_query) > 0) {
                               $textfeld= array(); //Fix v.1.00c
                while ($attributes = xtc_db_fetch_array($attributes_query)) {
                  $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id'];
                              $value_text = $attributes['products_options_value_text'];
                               if ($value_text != '')
            {
              unset($_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']]); //Fix v.1.00c
              $_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']] = $attributes['products_options_value_text'];
            }
               unset($textfeld);

                       }
               
                //new module support
                $this->shoppingCartModules->restore_contents_attributes_session($products,$this->table_basket_attributes,$this->type);
               
                if (ATTRIBUTES_VALID_CHECK == 'true' && !$this->validate_attributes($products['products_id'],$this->contents[$products['products_id']]['attributes'], 'restore_contents')) {
                  $this->remove($products['products_id']); //TODO info message
                }
              }
              if ($this->get_quantity($products['products_id']) > 0) {
                $_SESSION['old_customers_basket_'.$this->type] = true;
              }
            } else {
              // no permission
              $this->remove($products['products_id']);
            }
          }
        }
        $this->cleanup();

        // assign a temporary unique ID to the order contents to prevent hack attempts during the checkout procedure
        $this->cartID = $this->generate_cart_id();
      }
     

    noRiddle (revilonetz)

    • Experte
    • Beiträge: 13.743
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #741 am: 13. April 2022, 11:48:48
    Es fängt doch schon hiermit an:
    ...
    Hab mir heute das Modul rein gemacht.
    ...

    Was bitte hast du für ein Modul "rein gemacht" ?
    Ich kann im ersten Post kein Modul entdecken.

    Gruß,
    noRiddle

    Tronicpixel

    • Neu im Forum
    • Beiträge: 12
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #742 am: 13. April 2022, 12:08:05
    Das Freitext-Modul, um das es hier geht. Das ist die Original shopping_cart.php von der Shopversion 2.0.6, siehe meinen anderen Beitrag. 
    Bin mir aber gar nicht sicher, ob das speichern so vorgesehen ist mit der Session. Sprich ich log mich ein, such mir was aus und schreibe „hallo“ in das Textfeld.
    Log ich mich aus und wieder ein, ist das Textfeld leer bei dem betreffenden Artikel im Warenkorb. Eventuell kann mir ein Profi hier sagen, ob der Code die Funktion überhaupt so vorsieht, auch wenn es die function Bezeichnung nahe liegt. Wie voodoopupp schrieb, kann es ja sein das die variablen oder sowas sich geändert haben.

    Diese Stellen wurden in die shopping_cart eingefügt. Hoffe, das hilft nur die Auszüge davon.

    function restore_contents
    Code: PHP  [Auswählen]
                                               //BOF TEXTFELD
                  $options_values_name = xtc_oe_get_options_values_name($value,'');
                  $textfeld = ($options_values_name == 'TEXTFELD') ? trim($_SESSION['cart_textfeld'. $products_id][$value]) : '';
                  $sql_data_array['products_options_value_text'] = xtc_db_prepare_input($textfeld);
    //EOF TEXTFELD

    Code: PHP  [Auswählen]
     $textfeld= array(); //Fix v.1.00c
                while ($attributes = xtc_db_fetch_array($attributes_query)) {
                  $this->contents[$products['products_id']]['attributes'][$attributes['products_options_id']] = $attributes['products_options_value_id'];
                              $value_text = $attributes['products_options_value_text'];
                               if ($value_text != '')
            {
              unset($_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']]); //Fix v.1.00c
              $_SESSION['cart_textfeld'. $products['products_id']][$attributes['products_options_value_id']] = $attributes['products_options_value_text'];
            }
               unset($textfeld);

    function add_cart
    Code: PHP  [Auswählen]
    //BOF TEXTFELD
                $value_name = xtc_oe_get_options_values_name($value,'');
                $textfeld = ($value_name == 'TEXTFELD') ? $_POST['txt_'.$value] : '';
                $sql_data_array['products_options_value_text'] = xtc_db_prepare_input($textfeld);
    //EOF TEXTFELD

    noRiddle (revilonetz)

    • Experte
    • Beiträge: 13.743
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #743 am: 13. April 2022, 12:20:28
    Das Freitext-Modul, um das es hier geht.  ...

    Soll das die Antwort auf meine Frage sein ?
    Wie ich bereits bemerkte gibt es im ersten Post kein Modul.

    Wo immer du es her hast (die Webseite von web28 (R.I.P.) ist nicht mehr funktionstüchtig), ich denke nicht, daß hier jemand anders den Code hat (ich hätte ihn sogar) und darüber hinaus noch die Muße, Zeit und Lust hier für dich aufwändige Code-Analysen zu betreiben, für lau versteht sich.

    Hier gibt es ein Textfeld-Modul von modified, welches zur aktuellen Shop-Version kompatibel und außerdem sehr wahrscheinlich auch update-sicher ist: Marktplatz: Textfeld Erweiterung

    Gruß,
    noRiddle

    Tronicpixel

    • Neu im Forum
    • Beiträge: 12
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #744 am: 13. April 2022, 12:32:08
    Seite 48 gibts noch die Dateien. Anleitung etc. gibts ja nicht mehr, wie du schon angemerkt hast.

    Roberto75

    • Viel Schreiber
    • Beiträge: 833
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #745 am: 14. April 2022, 12:36:50
    @Tronicpixel

    Melde dich doch einmal bei mir.

    Gruß
    Robert

    Tronicpixel

    • Neu im Forum
    • Beiträge: 12
    • Geschlecht:
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #746 am: 14. April 2022, 13:12:26
    @Tronicpixel

    Melde dich doch einmal bei mir.

    Gruß
    Robert

    Würde ich, finde hier aber keine Kontaktmöglichkeit   :mhhh:

    Roberto75

    • Viel Schreiber
    • Beiträge: 833
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #747 am: 14. April 2022, 13:37:04
    Dann schau mal im Wiki bei den Dienstleistern und DataOffice nach.

    Hamburger

    • Fördermitglied
    • Beiträge: 63
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #748 am: 11. Oktober 2023, 12:27:08
    Hallo,
    ich hätte gerne mehr Informationen zu den Modul Textfeld Erweiterung 220.- Euro:
    Ich würde gerne 6 Textfelder untereinander anlegen, ist dieses möglich. Muss ich was bedenken bei einen Update. Gib ist Veränderungen in der Datenbank? Ist der Einbau schwierig? Gibt es eine Demoseite?
    Liebe Grüße
    Hamburger

    Q

    • Fördermitglied
    • Beiträge: 1.502
    Re: MODUL: Neues Artikelmerkmal TEXTFELD (Freitext Modul)
    Antwort #749 am: 11. Oktober 2023, 20:11:47
    Da es sich um ein Modul aus dem Modul-Shop vom Team handelt, würde ich da direkt per E-Mail oder über den grünen Support-Button diese Anfrage stellen.
    0 Antworten
    3775 Aufrufe
    31. Juli 2009, 12:44:40 von andal1979
    0 Antworten
    2070 Aufrufe
    29. April 2013, 19:14:32 von nucknuck
    4 Antworten
    5228 Aufrufe
    23. Juli 2012, 07:45:17 von Kawabiker
    3 Antworten
    4519 Aufrufe
    26. August 2009, 13:02:58 von web28