Ausgabe von Hersteller Freitextfeldern

Hallo zusammen,

wir haben für die Hersteller ein zusätzliches Freitextfeld angelegt (‘supplier_details’).

Im Template ist das Attribut grundsätzlich auch unter der manufacturer Variable als attributes-Array verfügbar:

#attributes: array:1 [▼
      "core" => Attribute {#1934 ▼
        #storage: array:3 [▼
          "id" => "1"
          "supplierID" => "1"
          "supplier_details" => """
            Beispiel.\n
            """
        ]
      }
    ]

Ich schaffe es aber nicht auf den Wert des Array-Felds “supplier_details” zuzugreifen, um es im Frontend auszugeben.

Hat jemand von Euch dazu eine Idee?

Schon im vorhinein vielen Dank!

Probier mal folgendes:

{$sArticle.supplier_attributes.core->get(“supplier_details”)}

Lg Sven

Hi,

ich habe vergessen dazu zu erwähnen, dass es um die Ausgabe auf der Herstellerseite geht.

Dort ist eben der oben genannte Array direkt unter der Variable “manufacturer” erreichbar:

"manufacturer" => Manufacturer {#1933 ▼
    #id: 1
    #name: "O My Bag Amsterdam"
    #description: "We’re an eco-friendly brand that produces fairly-made handbags and accessories. We’re not granola-munching, kale juice-chugging, freedom-fighting hippies, but we do have our principles. Eco-friendly is only a label for how our products are made, but shouldn’t set a precedent for how they look and how they’ll feel. We don’t sacrifice quality and style for principle, because to us, they’re one and the same."
    #metaTitle: "O My Bag Amsterdam"
    #metaDescription: ""
    #metaKeywords: ""
    #link: "https://www.omybag.nl"
    #coverFile: ""
    #attributes: array:1 [▼
      "core" => Attribute {#1934 ▼
        #storage: array:3 [▼
          "id" => "1"
          "supplierID" => "1"
          "supplier_details" => """
            We produce not your ordinary bags.\n
            We believe that consumers have the ability to change the world we live in. You don’t have to become the next great leader, an award-winning surgeon, or turn into Kim Kardashian to make a global impact. We as consumers have the ability to create a worldwide demand for products made with respect for not only the environment, but also the people that make them. By providing our producers with access to the global market, we connect them with customers that love a great bag!\n
            We believe in trade, not aid.\n
            So put down the green juice and stop flicking at your quinoa, we have something that will not only make you look good, but also feel good. We believe vintage can be modern, classic can be edgy, minimalism can still use a pop of color, and eco-friendly is fashionable. We believe we can change the world, one bag at a time. \n
            We are O My Bag Amsterdam
            """
        ]
      }
    ]
  }

 

Deswegen funktioniert der Weg über sArticle nicht

Hallo,

gibt es da eine Lösung, wie man an die Inhalte der zusätzlichen Freitextfelder herankommt?

Danke
Stephan

 

Wen es interessiert. So geht das:

{assign attr $manufacturer->getAttributes()}

{$attr.core->get(“eigenesAttribut”)}