How do I display 'Sign In' near cart icon in header section (Only for mobile view) in magento 2 [closed]

magento.stackexchange https://magento.stackexchange.com/questions/268537

Вопрос

Please Help me,I want to show Sign In link near cart icon in header section for mobile view, How can possible this ??..

Это было полезно?

Решение

It is possible from this way you can move class near minicart using jquery. please input this jquery script in to your any phtml file in your custom theme Magento_Theme.

<script type="scipt/javascript">
require(["jquery"], function($){
    $( document ).ready(function() {
        if($(window).width() <= 767){
            minicart = $('ul.header.links li.authorization-link');
            $('.minicart-wrapper').before(minicart); 
        }
    });
});
</script>

I have tested it,working properly. After add this code please refresh the cache.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top