FROM CACHE - de_header
Gelöst

Aktualisierung vom product.price

franz-messner
Shopify Partner
75 3 17

Hallo! 

 

Ich habe folgendes Problem:

ich muss den Produktpreis in Netto führen und dann beim Produkt Brutto anzeigen lassen: 

{{ product.price | times: 1.1 | money }}

 

Soweit alles gut. Jedoch habe ich mehrere Varianten der Produkte und diese haben unterschiedliche Preise. 
Gibt es eine Möglichkeit mit Javascript nach der Auswahl des Radiobuttons (Produktvariante) den Preis zu aktualisieren lassen? Der Preis ist ja beim Produkt zu jeweiliger Variante hinzugefügt.

Danke für eure Hilfestellung! 

LG Franz  

1 AKZEPTIERTE LÖSUNG
tewe
Shopify Partner
244 46 102

Erfolg.

Hallo @franz-messner,

so wie es ausschaut bist du an der richtigen Stelle. Aber wie man jetzt am Besten die Anpassung macht, bzw. die Daten abfängt, hängt von verschiedenen Faktoren ab. Im Prinzip gibt es viele Möglichkeiten dazu, aber für die Diskussion hier im Forum ist das zu komplex.

Falls ich dir da helfen soll, schicke mir doch eine private Nachricht.

Gruß
Thomas

 

• Was my reply helpful? Click Like to let me know!
• Was your question answered? Mark it as an Accepted Solution
• Check out our Price Updater App

Lösung in ursprünglichem Beitrag anzeigen

3 ANTWORTEN 3

tewe
Shopify Partner
244 46 102

Hallo Franz, @franz-messner 

das geht wohl nur über JavaScript, vermutlich am einfachsten mit jQuery. Wenn die Seite auf der Serverseite mit der Liquid-Engine gerendert ist, kommst du mit Liquid nicht mehr weiter.

 

Gruß
Thomas

 

• Was my reply helpful? Click Like to let me know!
• Was your question answered? Mark it as an Accepted Solution
• Check out our Price Updater App
franz-messner
Shopify Partner
75 3 17

Hallo Tewe! 

Danke für die Rückmeldung! Das ich Javascript brauchen werde ist klar... ich denke gerade nach wo ich die Infos abfangen kann ... in der theme.js habe ich den code:

  /**
       * This callback is called whenever the variant changes and allows to update data about the active variant
       */

    }, {
      key: '_onVariantChanged',
      value: function _onVariantChanged(previousVariant, newVariant) {
        // 1st: the prices
        this._updateProductPrices(newVariant, previousVariant);

        // 2nd: update inventory
        this._updateInventory(newVariant, previousVariant);

        // 3rd: update SKU
        this._updateSku(newVariant, previousVariant);

        // 4th: update the price measurement
        this._updateUnitPrice(newVariant, previousVariant);

        // 5th: the add to cart button
        this._updateAddToCartButton(newVariant, previousVariant);

        // 6th: store availability
        this.storeAvailability.updateWithVariant(newVariant);

        // Finally, we send an event so that other system could hook and do their own logic
        this.element.dispatchEvent(new CustomEvent('variant:changed', {
          bubbles: true,
          detail: { variant: newVariant, previousVariant: previousVariant }
        }));
      }

      /**
       * Update the prices (optionally showing compare at price)
       */

    }, {
      key: '_updateProductPrices',
      value: function _updateProductPrices(newVariant, previousVariant) {
        var productMetaPrices = this.element.querySelector('.ProductMeta__PriceList');

        if (!newVariant) {
          productMetaPrices.style.display = 'none';
        } else {
          if (previousVariant && previousVariant['price'] === newVariant['price'] && previousVariant['compare_at_price'] === newVariant['compare_at_price']) {
            return; // The price do not have changed so let's return to avoid changing the DOM for nothing
          }

          productMetaPrices.innerHTML = '';

          if (newVariant['compare_at_price'] > newVariant['price']) {
            productMetaPrices.innerHTML += '<span class="ProductMeta__Price Price Price--highlight Text--subdued u-h4" data-money-convertible>' + __WEBPACK_IMPORTED_MODULE_4__helper_Currency__["default"].formatMoney(newVariant['price'], window.theme.moneyFormat) + '</span>';
            productMetaPrices.innerHTML += '<span class="ProductMeta__Price Price Price--compareAt Text--subdued u-h4" data-money-convertible>' + __WEBPACK_IMPORTED_MODULE_4__helper_Currency__["default"].formatMoney(newVariant['compare_at_price'], window.theme.moneyFormat) + '</span>';
          } else {
            productMetaPrices.innerHTML += '<span class="ProductMeta__Price Price Text--subdued u-h4" data-money-convertible>' + __WEBPACK_IMPORTED_MODULE_4__helper_Currency__["default"].formatMoney(newVariant['price'], window.theme.moneyFormat) + '</span>';
          }

          productMetaPrices.style.display = '';
        }
      }

 

gefunden. 

Wie komme ich aber jetzt dort hin, dass ich das HTML/Liquid Element refreshe....

LG

tewe
Shopify Partner
244 46 102

Erfolg.

Hallo @franz-messner,

so wie es ausschaut bist du an der richtigen Stelle. Aber wie man jetzt am Besten die Anpassung macht, bzw. die Daten abfängt, hängt von verschiedenen Faktoren ab. Im Prinzip gibt es viele Möglichkeiten dazu, aber für die Diskussion hier im Forum ist das zu komplex.

Falls ich dir da helfen soll, schicke mir doch eine private Nachricht.

Gruß
Thomas

 

• Was my reply helpful? Click Like to let me know!
• Was your question answered? Mark it as an Accepted Solution
• Check out our Price Updater App