Displaying {{alternative_payment_methods}} on different steps on checkout page?

For some reason when i try to display {{ alternative_payment_methods }} elsewhere besides the “information” step it does not display. Is there a way to override this so we can display it on a different step within the checkout process? We of course have shopify plus so we are able to edit the checkout.liquid file.

{% if content_for_layout contains 'data-step="payment_method"' %}
               test
               {{ alternative_payment_methods }}
            {% endif %}
{% if content_for_layout contains 'data-step="payment_method"' %}
               test
              {% if additional_checkout_buttons %}
                
                  {{ content_for_additional_checkout_buttons }}
                

                
              {% endif %}
            {% endif %}

Neither one of these snippets populate the buttons?