How to show customer name after login in their account magento 2.1.1?












1















I want to show customer last name into my website when customer will access their account.



<?php if( $isLoggedIn ) { ?>                                    
<li class="first">
<a id="quick_sigup_link" style="positon:relative;" href="<?php echo $this->getUrl('customer/account/'); ?>">
<span>Hello. User</span>
<span class="youraccount" style="margin-top:-25px;">My Account</span>
</a>
</li>









share|improve this question
















bumped to the homepage by Community 2 days ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    1















    I want to show customer last name into my website when customer will access their account.



    <?php if( $isLoggedIn ) { ?>                                    
    <li class="first">
    <a id="quick_sigup_link" style="positon:relative;" href="<?php echo $this->getUrl('customer/account/'); ?>">
    <span>Hello. User</span>
    <span class="youraccount" style="margin-top:-25px;">My Account</span>
    </a>
    </li>









    share|improve this question
















    bumped to the homepage by Community 2 days ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      1












      1








      1








      I want to show customer last name into my website when customer will access their account.



      <?php if( $isLoggedIn ) { ?>                                    
      <li class="first">
      <a id="quick_sigup_link" style="positon:relative;" href="<?php echo $this->getUrl('customer/account/'); ?>">
      <span>Hello. User</span>
      <span class="youraccount" style="margin-top:-25px;">My Account</span>
      </a>
      </li>









      share|improve this question
















      I want to show customer last name into my website when customer will access their account.



      <?php if( $isLoggedIn ) { ?>                                    
      <li class="first">
      <a id="quick_sigup_link" style="positon:relative;" href="<?php echo $this->getUrl('customer/account/'); ?>">
      <span>Hello. User</span>
      <span class="youraccount" style="margin-top:-25px;">My Account</span>
      </a>
      </li>






      magento2 login






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 29 '17 at 4:05









      Manoj Deswal

      4,27581742




      4,27581742










      asked Jan 9 '17 at 6:18









      Shakib RahmanShakib Rahman

      67110




      67110





      bumped to the homepage by Community 2 days ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 2 days ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          First You need to create a object instance:



          $obj = MagentoFrameworkAppObjectManager::getInstance();


          After That:



              <?php
          $customerSession = $obj->get('MagentoCustomerModelSession');
          if($customerSession->isLoggedIn()) {
          echo $customerSession->getCustomer()->getLastname()."<br/>"; // get Customer last name
          echo $customerSession->getCustomer()->getName()."<br/>"; // get Full Name

          }





          share|improve this answer


























          • Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

            – mp196
            Jan 9 '17 at 6:38











          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%2f153727%2fhow-to-show-customer-name-after-login-in-their-account-magento-2-1-1%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          First You need to create a object instance:



          $obj = MagentoFrameworkAppObjectManager::getInstance();


          After That:



              <?php
          $customerSession = $obj->get('MagentoCustomerModelSession');
          if($customerSession->isLoggedIn()) {
          echo $customerSession->getCustomer()->getLastname()."<br/>"; // get Customer last name
          echo $customerSession->getCustomer()->getName()."<br/>"; // get Full Name

          }





          share|improve this answer


























          • Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

            – mp196
            Jan 9 '17 at 6:38
















          0














          First You need to create a object instance:



          $obj = MagentoFrameworkAppObjectManager::getInstance();


          After That:



              <?php
          $customerSession = $obj->get('MagentoCustomerModelSession');
          if($customerSession->isLoggedIn()) {
          echo $customerSession->getCustomer()->getLastname()."<br/>"; // get Customer last name
          echo $customerSession->getCustomer()->getName()."<br/>"; // get Full Name

          }





          share|improve this answer


























          • Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

            – mp196
            Jan 9 '17 at 6:38














          0












          0








          0







          First You need to create a object instance:



          $obj = MagentoFrameworkAppObjectManager::getInstance();


          After That:



              <?php
          $customerSession = $obj->get('MagentoCustomerModelSession');
          if($customerSession->isLoggedIn()) {
          echo $customerSession->getCustomer()->getLastname()."<br/>"; // get Customer last name
          echo $customerSession->getCustomer()->getName()."<br/>"; // get Full Name

          }





          share|improve this answer















          First You need to create a object instance:



          $obj = MagentoFrameworkAppObjectManager::getInstance();


          After That:



              <?php
          $customerSession = $obj->get('MagentoCustomerModelSession');
          if($customerSession->isLoggedIn()) {
          echo $customerSession->getCustomer()->getLastname()."<br/>"; // get Customer last name
          echo $customerSession->getCustomer()->getName()."<br/>"; // get Full Name

          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 9 '17 at 6:37

























          answered Jan 9 '17 at 6:21









          ArunendraArunendra

          6,07331642




          6,07331642













          • Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

            – mp196
            Jan 9 '17 at 6:38



















          • Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

            – mp196
            Jan 9 '17 at 6:38

















          Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

          – mp196
          Jan 9 '17 at 6:38





          Direct Objectmanager instance is a quick fix but should be avoided as much as possible. good idea would be to inject in the constructor.

          – mp196
          Jan 9 '17 at 6:38


















          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%2f153727%2fhow-to-show-customer-name-after-login-in-their-account-magento-2-1-1%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

          An IMO inspired problem

          Management

          Investment