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归因
scroll top