Custom fields
Custom fields allow you to make text and image updates from the FeedOtter interface.
Use Custom Fields When:
Custom Fields Limitations:
Types of Custom Fields
<head>
<script type="application/ld+json" id="custom">
[
{"prettyName": "Sample HTML","name": "samplehtml","type": "html","default": "<p>a block of html</p>"},
{"prettyName": "Headline","name": "headline","type": "text","default": "Some plain text"},
{"prettyName": "Ad Image","name": "adimage1","type": "image","default": "https://via.placeholder.com/350x250"}
]
</script>
</head>
<body>
<h1> [[custom.headline]]</h1>
<div>[[custom.samplehtml]]</div>
<p><img src="[[custom.adimage1]]"></p>
</body>
</html>
Last updated
