質問

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