Magento 2 - Add the Sidebar Order Summary on Customer Account CreateHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMagento 2 - Move the afterMethods item (Discount and Gift Card Code) to the Order Summary sidebarMagento 2 - Rearrange the order of the Cart and Totals on the Order Summary Checkout SidebarHow to rename Order Total in Order Summary Sidebar?How can i add coupon code on sidebar(order summary) in checkout pageHow do I show and hide cart items in the order summary sidebar of the magento 2 checkout?How to move order summary sidebar from right to left in checkout page Magento 2.2.51 exception(s): Exception #0 (MagentoFrameworkConfigDomValidationException): Element 'referenceContainer': This element is not expectedMagento 2.1 customer account bootstrap

Does a component pouch automatically contain components?

Is there an evolutionary advantage to having two heads?

Constructing a CCY Gate

Order by does not work as I expect

How to decline physical affection from a child whose parents are pressuring them?

Can I ask a publisher for a paper that I need for reviewing

When was the word "ambigu" first used with the sense of "meal with all items served at the same time"?

Applicants clearly not having the skills they advertise

How should I push back against my job assigning "homework"?

What people are called "кабан" and why?

What does War Machine's "Canopy! Canopy!" line mean in "Avengers: Endgame"?

Why is Colorado so different politically from nearby states?

What is the most important characteristic of New Weird as a genre?

Why is there a need to modify system call tables in Linux?

Is a hash a zero-knowledge proof?

Cryptography and patents

Joist hangers to use for rough cut 2x8 (2 3/4" x 8 3/4")?

What damages does a hurting husband pay to his wife?

Asking bank to reduce APR instead of increasing credit limit

Why does the UK have more political parties than the US?

Creating Fictional Slavic Place Names

Pros and cons of writing a book review?

What does it mean by "d-ism of Leibniz" and "dotage of Newton" in simple English?

Make a formula to get the highest score



Magento 2 - Add the Sidebar Order Summary on Customer Account Create


How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlMagento 2 - Move the afterMethods item (Discount and Gift Card Code) to the Order Summary sidebarMagento 2 - Rearrange the order of the Cart and Totals on the Order Summary Checkout SidebarHow to rename Order Total in Order Summary Sidebar?How can i add coupon code on sidebar(order summary) in checkout pageHow do I show and hide cart items in the order summary sidebar of the magento 2 checkout?How to move order summary sidebar from right to left in checkout page Magento 2.2.51 exception(s): Exception #0 (MagentoFrameworkConfigDomValidationException): Element 'referenceContainer': This element is not expectedMagento 2.1 customer account bootstrap






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















On Magento 2.x I'd like to display the Order Summary via the sidebar on the page customer/account/create. You can find this sidebar on Checkout/#shipping page usually. Is it even possible?



I tried to create a customer_account_create.xml file in app/design/frontend/<Vendorname>/<theme>/Magento_Customer/layout/ containing the following (but with no success so far - nothing changed):



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<!-- I added those 3 items ... -->
<update handle="checkout_cart_sidebar_item_renderers"/>
<update handle="checkout_cart_sidebar_item_price_renderers"/>
<update handle="checkout_cart_sidebar_total_renderers"/>
<body>
<referenceBlock name="head.components">
<block class="MagentoFrameworkViewElementJsComponents" name="customer_account_create_head_components" template="Magento_Customer::js/components.phtml"/>
</referenceBlock>
<referenceContainer name="content">
<block class="MagentoCustomerBlockFormRegister" name="customer_form_register" template="Magento_Customer::form/register.phtml">
<arguments>
<argument name="attribute_data" xsi:type="object">MagentoCustomerBlockDataProvidersAddressAttributeData</argument>
</arguments>
<container name="form.additional.info" as="form_additional_info"/>
<container name="customer.form.register.fields.before" as="form_fields_before" label="Form Fields Before" htmlTag="div" htmlClass="customer-form-before"/>
</block>
<block class="MagentoCookieBlockRequireCookie" name="require-cookie" template="Magento_Cookie::require_cookie.phtml">
<arguments>
<argument name="triggers" xsi:type="array">
<item name="registerSubmitButton" xsi:type="string">.action.submit</item>
</argument>
</arguments>
</block>
</referenceContainer>
<referenceContainer name="form.additional.info">
<block class="MagentoFrameworkViewElementTemplate" name="form_additional_info_customer" template="Magento_Customer::additionalinfocustomer.phtml"/>
</referenceContainer>
<!-- ... and this sidebar block, but it is not displaying actually -->
<referenceContainer name="header-wrapper">
<block class="MagentoCheckoutBlockCartSidebar" name="minicart" as="minicart" after="logo" template="Magento_Checkout::cart/minicart.phtml">
<arguments>
<argument name="jsLayout" xsi:type="array">
<item name="types" xsi:type="array"/>
<item name="components" xsi:type="array">
<item name="minicart_content" xsi:type="array">
<item name="component" xsi:type="string">Magento_Checkout/js/view/minicart</item>
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Magento_Checkout/minicart/content</item>
</item>
<item name="children" xsi:type="array">
<item name="subtotal.container" xsi:type="array">
<item name="component" xsi:type="string">uiComponent</item>
<item name="config" xsi:type="array">
<item name="displayArea" xsi:type="string">subtotalContainer</item>
</item>
<item name="children" xsi:type="array">
<item name="subtotal" xsi:type="array">
<item name="component" xsi:type="string">uiComponent</item>
<item name="config" xsi:type="array">
<item name="template" xsi:type="string">Magento_Checkout/minicart/subtotal</item>
</item>
</item>
</item>
</item>
<item name="extra_info" xsi:type="array">
<item name="component" xsi:type="string">uiComponent</item>
<item name="config" xsi:type="array">
<item name="displayArea" xsi:type="string">extraInfo</item>
</item>
</item>
<item name="promotion" xsi:type="array">
<item name="component" xsi:type="string">uiComponent</item>
<item name="config" xsi:type="array">
<item name="displayArea" xsi:type="string">promotion</item>
</item>
</item>
</item>
</item>
</item>
</argument>
</arguments>
<container name="minicart.addons" label="Mini-cart promotion block"/>
</block>
</referenceContainer>
</body>
</page>









share|improve this question






























    0















    On Magento 2.x I'd like to display the Order Summary via the sidebar on the page customer/account/create. You can find this sidebar on Checkout/#shipping page usually. Is it even possible?



    I tried to create a customer_account_create.xml file in app/design/frontend/<Vendorname>/<theme>/Magento_Customer/layout/ containing the following (but with no success so far - nothing changed):



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <!-- I added those 3 items ... -->
    <update handle="checkout_cart_sidebar_item_renderers"/>
    <update handle="checkout_cart_sidebar_item_price_renderers"/>
    <update handle="checkout_cart_sidebar_total_renderers"/>
    <body>
    <referenceBlock name="head.components">
    <block class="MagentoFrameworkViewElementJsComponents" name="customer_account_create_head_components" template="Magento_Customer::js/components.phtml"/>
    </referenceBlock>
    <referenceContainer name="content">
    <block class="MagentoCustomerBlockFormRegister" name="customer_form_register" template="Magento_Customer::form/register.phtml">
    <arguments>
    <argument name="attribute_data" xsi:type="object">MagentoCustomerBlockDataProvidersAddressAttributeData</argument>
    </arguments>
    <container name="form.additional.info" as="form_additional_info"/>
    <container name="customer.form.register.fields.before" as="form_fields_before" label="Form Fields Before" htmlTag="div" htmlClass="customer-form-before"/>
    </block>
    <block class="MagentoCookieBlockRequireCookie" name="require-cookie" template="Magento_Cookie::require_cookie.phtml">
    <arguments>
    <argument name="triggers" xsi:type="array">
    <item name="registerSubmitButton" xsi:type="string">.action.submit</item>
    </argument>
    </arguments>
    </block>
    </referenceContainer>
    <referenceContainer name="form.additional.info">
    <block class="MagentoFrameworkViewElementTemplate" name="form_additional_info_customer" template="Magento_Customer::additionalinfocustomer.phtml"/>
    </referenceContainer>
    <!-- ... and this sidebar block, but it is not displaying actually -->
    <referenceContainer name="header-wrapper">
    <block class="MagentoCheckoutBlockCartSidebar" name="minicart" as="minicart" after="logo" template="Magento_Checkout::cart/minicart.phtml">
    <arguments>
    <argument name="jsLayout" xsi:type="array">
    <item name="types" xsi:type="array"/>
    <item name="components" xsi:type="array">
    <item name="minicart_content" xsi:type="array">
    <item name="component" xsi:type="string">Magento_Checkout/js/view/minicart</item>
    <item name="config" xsi:type="array">
    <item name="template" xsi:type="string">Magento_Checkout/minicart/content</item>
    </item>
    <item name="children" xsi:type="array">
    <item name="subtotal.container" xsi:type="array">
    <item name="component" xsi:type="string">uiComponent</item>
    <item name="config" xsi:type="array">
    <item name="displayArea" xsi:type="string">subtotalContainer</item>
    </item>
    <item name="children" xsi:type="array">
    <item name="subtotal" xsi:type="array">
    <item name="component" xsi:type="string">uiComponent</item>
    <item name="config" xsi:type="array">
    <item name="template" xsi:type="string">Magento_Checkout/minicart/subtotal</item>
    </item>
    </item>
    </item>
    </item>
    <item name="extra_info" xsi:type="array">
    <item name="component" xsi:type="string">uiComponent</item>
    <item name="config" xsi:type="array">
    <item name="displayArea" xsi:type="string">extraInfo</item>
    </item>
    </item>
    <item name="promotion" xsi:type="array">
    <item name="component" xsi:type="string">uiComponent</item>
    <item name="config" xsi:type="array">
    <item name="displayArea" xsi:type="string">promotion</item>
    </item>
    </item>
    </item>
    </item>
    </item>
    </argument>
    </arguments>
    <container name="minicart.addons" label="Mini-cart promotion block"/>
    </block>
    </referenceContainer>
    </body>
    </page>









    share|improve this question


























      0












      0








      0








      On Magento 2.x I'd like to display the Order Summary via the sidebar on the page customer/account/create. You can find this sidebar on Checkout/#shipping page usually. Is it even possible?



      I tried to create a customer_account_create.xml file in app/design/frontend/<Vendorname>/<theme>/Magento_Customer/layout/ containing the following (but with no success so far - nothing changed):



      <?xml version="1.0"?>
      <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
      <!-- I added those 3 items ... -->
      <update handle="checkout_cart_sidebar_item_renderers"/>
      <update handle="checkout_cart_sidebar_item_price_renderers"/>
      <update handle="checkout_cart_sidebar_total_renderers"/>
      <body>
      <referenceBlock name="head.components">
      <block class="MagentoFrameworkViewElementJsComponents" name="customer_account_create_head_components" template="Magento_Customer::js/components.phtml"/>
      </referenceBlock>
      <referenceContainer name="content">
      <block class="MagentoCustomerBlockFormRegister" name="customer_form_register" template="Magento_Customer::form/register.phtml">
      <arguments>
      <argument name="attribute_data" xsi:type="object">MagentoCustomerBlockDataProvidersAddressAttributeData</argument>
      </arguments>
      <container name="form.additional.info" as="form_additional_info"/>
      <container name="customer.form.register.fields.before" as="form_fields_before" label="Form Fields Before" htmlTag="div" htmlClass="customer-form-before"/>
      </block>
      <block class="MagentoCookieBlockRequireCookie" name="require-cookie" template="Magento_Cookie::require_cookie.phtml">
      <arguments>
      <argument name="triggers" xsi:type="array">
      <item name="registerSubmitButton" xsi:type="string">.action.submit</item>
      </argument>
      </arguments>
      </block>
      </referenceContainer>
      <referenceContainer name="form.additional.info">
      <block class="MagentoFrameworkViewElementTemplate" name="form_additional_info_customer" template="Magento_Customer::additionalinfocustomer.phtml"/>
      </referenceContainer>
      <!-- ... and this sidebar block, but it is not displaying actually -->
      <referenceContainer name="header-wrapper">
      <block class="MagentoCheckoutBlockCartSidebar" name="minicart" as="minicart" after="logo" template="Magento_Checkout::cart/minicart.phtml">
      <arguments>
      <argument name="jsLayout" xsi:type="array">
      <item name="types" xsi:type="array"/>
      <item name="components" xsi:type="array">
      <item name="minicart_content" xsi:type="array">
      <item name="component" xsi:type="string">Magento_Checkout/js/view/minicart</item>
      <item name="config" xsi:type="array">
      <item name="template" xsi:type="string">Magento_Checkout/minicart/content</item>
      </item>
      <item name="children" xsi:type="array">
      <item name="subtotal.container" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">subtotalContainer</item>
      </item>
      <item name="children" xsi:type="array">
      <item name="subtotal" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="template" xsi:type="string">Magento_Checkout/minicart/subtotal</item>
      </item>
      </item>
      </item>
      </item>
      <item name="extra_info" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">extraInfo</item>
      </item>
      </item>
      <item name="promotion" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">promotion</item>
      </item>
      </item>
      </item>
      </item>
      </item>
      </argument>
      </arguments>
      <container name="minicart.addons" label="Mini-cart promotion block"/>
      </block>
      </referenceContainer>
      </body>
      </page>









      share|improve this question
















      On Magento 2.x I'd like to display the Order Summary via the sidebar on the page customer/account/create. You can find this sidebar on Checkout/#shipping page usually. Is it even possible?



      I tried to create a customer_account_create.xml file in app/design/frontend/<Vendorname>/<theme>/Magento_Customer/layout/ containing the following (but with no success so far - nothing changed):



      <?xml version="1.0"?>
      <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
      <!-- I added those 3 items ... -->
      <update handle="checkout_cart_sidebar_item_renderers"/>
      <update handle="checkout_cart_sidebar_item_price_renderers"/>
      <update handle="checkout_cart_sidebar_total_renderers"/>
      <body>
      <referenceBlock name="head.components">
      <block class="MagentoFrameworkViewElementJsComponents" name="customer_account_create_head_components" template="Magento_Customer::js/components.phtml"/>
      </referenceBlock>
      <referenceContainer name="content">
      <block class="MagentoCustomerBlockFormRegister" name="customer_form_register" template="Magento_Customer::form/register.phtml">
      <arguments>
      <argument name="attribute_data" xsi:type="object">MagentoCustomerBlockDataProvidersAddressAttributeData</argument>
      </arguments>
      <container name="form.additional.info" as="form_additional_info"/>
      <container name="customer.form.register.fields.before" as="form_fields_before" label="Form Fields Before" htmlTag="div" htmlClass="customer-form-before"/>
      </block>
      <block class="MagentoCookieBlockRequireCookie" name="require-cookie" template="Magento_Cookie::require_cookie.phtml">
      <arguments>
      <argument name="triggers" xsi:type="array">
      <item name="registerSubmitButton" xsi:type="string">.action.submit</item>
      </argument>
      </arguments>
      </block>
      </referenceContainer>
      <referenceContainer name="form.additional.info">
      <block class="MagentoFrameworkViewElementTemplate" name="form_additional_info_customer" template="Magento_Customer::additionalinfocustomer.phtml"/>
      </referenceContainer>
      <!-- ... and this sidebar block, but it is not displaying actually -->
      <referenceContainer name="header-wrapper">
      <block class="MagentoCheckoutBlockCartSidebar" name="minicart" as="minicart" after="logo" template="Magento_Checkout::cart/minicart.phtml">
      <arguments>
      <argument name="jsLayout" xsi:type="array">
      <item name="types" xsi:type="array"/>
      <item name="components" xsi:type="array">
      <item name="minicart_content" xsi:type="array">
      <item name="component" xsi:type="string">Magento_Checkout/js/view/minicart</item>
      <item name="config" xsi:type="array">
      <item name="template" xsi:type="string">Magento_Checkout/minicart/content</item>
      </item>
      <item name="children" xsi:type="array">
      <item name="subtotal.container" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">subtotalContainer</item>
      </item>
      <item name="children" xsi:type="array">
      <item name="subtotal" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="template" xsi:type="string">Magento_Checkout/minicart/subtotal</item>
      </item>
      </item>
      </item>
      </item>
      <item name="extra_info" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">extraInfo</item>
      </item>
      </item>
      <item name="promotion" xsi:type="array">
      <item name="component" xsi:type="string">uiComponent</item>
      <item name="config" xsi:type="array">
      <item name="displayArea" xsi:type="string">promotion</item>
      </item>
      </item>
      </item>
      </item>
      </item>
      </argument>
      </arguments>
      <container name="minicart.addons" label="Mini-cart promotion block"/>
      </block>
      </referenceContainer>
      </body>
      </page>






      magento2 customer-account sidebar order-summary






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 24 at 11:14







      F3L1X79

















      asked May 23 at 12:11









      F3L1X79F3L1X79

      1267




      1267




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f275864%2fmagento-2-add-the-sidebar-order-summary-on-customer-account-create%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f275864%2fmagento-2-add-the-sidebar-order-summary-on-customer-account-create%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form