Hi, I find the solution:
edit the .php file /admin/partials/pagefrog-amp-template-single.php in the plugin folder.
In the div with class=”content” add the follow code in the position you want to show your custom field:
<?php global $post;
$custom_field = get_post_meta( $post->ID, 'custom_field_name', true );
echo $custom_field ; ?>
Hi, any idea about my issue?
Great plugin. Only minus I see, it that it doesn’t include Custom fields in the AMP pages, which much of my content consists of, leaving parts on my page.
Any idea how I can add this?