XF 2.2 How can I disable the PWA floating back button? [XenForo 2.2.13]

Solution
PAGE_CONTAINER
Code:
<div class="u-navButtons js-navButtons" data-trigger-type="{{ property('scrollJumpButtons') }}">
    <xf:button href="javascript:" class="button--scroll"><xf:fa icon="fa-arrow-left" /><span class="u-srOnly">{{ phrase('back') }}</span></xf:button>
</div>
Delete
PAGE_CONTAINER
Code:
<div class="u-navButtons js-navButtons" data-trigger-type="{{ property('scrollJumpButtons') }}">
    <xf:button href="javascript:" class="button--scroll"><xf:fa icon="fa-arrow-left" /><span class="u-srOnly">{{ phrase('back') }}</span></xf:button>
</div>
Delete
 
Solution
So I just updated to .13 and I am getting the back button on Android PWA. Wondering how to fix this. 🤷🏼

This is happening on default untouched template as well. And I have cleaned up all caches and also reinstalled pwa.

Pretty strange coz it's not happening here. And I don't think this was a change made on 2.3 release. Probably should have started a fresh thread for this.

I mean I don't want to remove the code as mentioned here coz it would also remove it from iOS devices. So any suggestions would be helpful. Thanks!
 
Last edited:
Top Bottom