accelerated-mobile-pages\templates\features.php
Before
<section class="amp-wp-content post-comments amp-wp-article-content amp-disqus-comments" id="comments">
<amp-iframe
height=<?php echo esc_attr($height) ?>
width=<?php echo esc_attr($width) ?>
layout="<?php echo esc_attr($layout) ?>"
sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
frameborder="0"
src="<?php echo esc_url($disqus_url) ?>" title="<?php echo esc_html__('Disqus Comments','accelerated-mobile-pages'); ?>">
<div overflow tabindex="0" role="button" aria-label="Read more"><?php echo esc_html__('Disqus Comments Loading...','accelerated-mobile-pages') ?></div>
</amp-iframe>
After
<section class="amp-wp-content post-comments amp-wp-article-content amp-disqus-comments" id="comments">
<amp-iframe
height=<?php echo esc_attr($height) ?>
width=<?php echo esc_attr($width) ?>
layout="<?php echo esc_attr($layout) ?>"
sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
resizable
frameborder="0"
src="<?php echo esc_url($disqus_url) ?>" title="<?php echo esc_html__('Disqus Comments','accelerated-mobile-pages'); ?>">
<div overflow tabindex="0" role="button" aria-label="Read more"><?php echo esc_html__('Disqus Comments Loading...','accelerated-mobile-pages') ?></div>
</amp-iframe>