Magento 2: Ödeme sayfasına nasıl ek blok eklenir?


11

Yukarıdaki dosyayı geçersiz kılmak ve özel bloğumu görüntülemek istiyorum li.

Magento \ satıcı \ magento \ modül-çıkış \ görünümü \ önyüzü \ web \ template \ shipping.html

<li id="shipping" class="checkout-shipping-address" data-bind="fadeVisible: visible()">
    <div class="step-title" data-bind="i18n: 'Shipping Address'" data-role="title"></div>
</li>   

<!-- ko if:myBlock --> // Mine need to call block created from Admin
<li>
    <p data-bind="html: myBlock"></p>
</li> 
<!-- /ko -->

<!--Shipping method template-->
<li id="opc-shipping_method"
    class="checkout-shipping-method"
    data-bind="fadeVisible: visible(), blockLoader: isLoading"
    role="presentation">
    <div class="checkout-shipping-method">
        <div class="step-title" data-bind="i18n: 'Shipping Methods'" data-role="title"></div>
    </div>
</li>

Blok yöneticide etkinleştirilirse li, blok verileriyle bir özel gösterecektir , aksi takdirde hiçbir şey göstermez.

.htmlBloğun etkin olup olmadığını doğrudan dosyadan kontrol edebilir miyiz ?



Merhaba @AlexConstantinescu Nakliye Yöntemi yukarıda göstermek istiyorum
Ankit Shah

Yanıtlar:


20

Burada , ödeme gönderim yönteminin üzerinde özel blok göstermeye örnek veriyorum

1) adresinde di.xml oluşturun

Uygulamanın / kod / Satıcı / Modül / etc / kullanıcı arayüzü / di.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <type name="Magento\Checkout\Model\CompositeConfigProvider">
        <arguments>
            <argument name="configProviders" xsi:type="array">
                <item name="cms_block_config_provider" xsi:type="object">Vendor\Module\Model\ConfigProvider</item>
            </argument>
        </arguments>
    </type>
</config>

2) Statik bloğunuzu windows.checkoutConfig dosyasına tanımlamak için ConfigProvider.php dosyası oluşturun .

Uygulamanın / kod / Satıcı / Modül / Model / ConfigProvider.php

<?php

namespace Vendor\Module\Model;

use Magento\Checkout\Model\ConfigProviderInterface;
use Magento\Framework\View\LayoutInterface;

class ConfigProvider implements ConfigProviderInterface
{
    /** @var LayoutInterface  */
    protected $_layout;

    public function __construct(LayoutInterface $layout)
    {
        $this->_layout = $layout;
    }

    public function getConfig()
    {
        $myBlockId = "my_static_block"; // CMS Block Identifier
        //$myBlockId = 20; // CMS Block ID

        return [
            'my_block_content' => $this->_layout->createBlock('Magento\Cms\Block\Block')->setBlockId($myBlockId)->toHtml()
        ];
    }
}

3) Modülünüzdeki checkout_index_index.xml dosyasını geçersiz kılın ve kendi gönderim bileşeninizi tanımlayın

Uygulamanın / kod / Satıcı / Modül / görünüm / kullanıcı arayüzü / düzeni / checkout_index_index.xml

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceBlock name="checkout.root">
                <arguments>
                    <argument name="jsLayout" xsi:type="array">
                        <item name="components" xsi:type="array">
                            <item name="checkout" xsi:type="array">
                                <item name="children" xsi:type="array">
                                    <item name="steps" xsi:type="array">
                                        <item name="children" xsi:type="array">
                                            <item name="shipping-step" xsi:type="array">
                                                <item name="children" xsi:type="array">
                                                    <item name="shippingAddress" xsi:type="array">
                                                        <item name="component" xsi:type="string">Vendor_Module/js/view/shipping</item>
                                                    </item>
                                                </item>
                                            </item>
                                        </item>
                                    </item>
                                </item>
                            </item>
                        </item>
                    </argument>
                </arguments>
        </referenceBlock>
    </body>
</page>

4) Şimdi oluşturmak shipping.js ve kendi nakliye şablon dosyasını tanımlamak

Uygulama / kod / satıcı / modülü / görünüşüdür / ön / ağ / js / görünüşüdür / shipping.js

define(
    [
        'jquery',
        'ko',
        'Magento_Checkout/js/view/shipping'
    ],
    function(
        $,
        ko,
        Component
    ) {
        'use strict';
        return Component.extend({
            defaults: {
                template: 'Vendor_Module/shipping'
            },

            initialize: function () {
                var self = this;
                this._super();
            }

        });
    }
);

5) shipping.html dosyasını kopyalayın

satıcı / Magento / modül çıkış / görünüşüdür / ön / ağ / şablon / shipping.html

To Sizin modülü

Uygulamanın / kod / Satıcı / Modül / görünüm / kullanıcı arayüzü / web / şablon / shipping.html

Şimdi eklemek window.checkoutConfig.my_block_content için shipping.html size statik bloğu göstermek istiyorum

<div data-bind="html: window.checkoutConfig.my_block_content"></div>

Burada statik bloğuma yeni ürün widget'ı ekliyorum

ÇIKTI:

resim açıklamasını buraya girin


Ben de aynı şeyi yaptım ama çalışmıyor. Bu sekmede statik blok içeriği göremiyorum.
Sarfaraj Sipai

@Prince, "Nakliye yöntemleri" nin altındaki bloğu görüntülemek için ne yapmalıyım?
Vinaya Maheshwari

1
@VinayaMaheshwari, shipping.htmlnakliye yönteminden sonra bloğu göstermek için blok div'inizi en son yerleştirir
Prince Patel

1
@VinayaMaheshwari Tarayıcı önbelleği olmalı. Nakavt js ve html dosyalarındaki değişiklikleri kontrol etmek için bu cevabı kontrol edin: magento.stackexchange.com/a/227290/35758
Prince Patel

1
Evet! tarayıcı önbelleğiydi, yardımınız için teşekkürler.
Vinaya Maheshwari

4

Kenar çubuğunun altındaki ödeme sayfasında bir CMS bloğu görüntülemek için yaptığım budur. 1. Templates / onepage.phtml'de cms blok içeriğini şu şekilde tutmak için bir js değişkeni oluşturdum:

<?php $myCmsBlock = $block->getLayout()->createBlock('Magento\Cms\Block\Block')->setBlockId('my_cms_block')->toHtml() ?>

<script type="text/javascript">
    var my_cms_block = <?php echo json_encode($myCmsBlock)?>;
</script>

2. Nakavt şablon dosyasında (benim durumumda web / js / template / sidebar.html idi), yukarıdaki js değişkeninden cms blok içeriğini şöyle gösterdi:

<div class="opc-help-cms" data-bind="html:my_cms_block">
    </div>

Umarım bu birine yardımcı olur! Teşekkürler!


Basit çözüm. Özel onepage.phtml hazırlamak için gerekli. Bu magento.stackexchange.com/questions/127150/…
Gediminas

ödeme adımına eklemek istersem ne yapmam gerektiğini biliyor musun? Ben yukarıda belirtilen ne satıcı / magento / modül-ödeme / görünüm / frontend / web / şablon / onepage.html ve payment.html eklemeye çalıştı ama herhangi bir etkisi yoktur. magento.stackexchange.com/questions/296500/…
Kris Wen

payment.html, onepage.phtml adresinden js değişkenine erişebilmelidir. Ödeme sayfasındaki konsolda yazdırarak düzgün işlendiğinden emin olun
Siju Joseph

-1

phtml dosyasında statik blok ekle:

<?php echo $block->getLayout()->createBlock('Magento\Cms\Block\Block')->setBlockId('block_identifier')->toHtml();?>

XML kullanarak blok ekle:

<referenceContainer name="content">
    <block class="Magento\Cms\Block\Block" name="block_identifier">
       <arguments>
         <argument name="block_id" xsi:type="string">block_identifier</argument>
       </arguments>
    </block>
</referenceContainer>

cms sayfasına blok ekle:

{{block class="Magento\Cms\Block\Block" block_id="block_identifier"}}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.