Caan't see all fields option in `+ Add Field`?

Hi Guys… is there any way, i can add more stuff to this + Add Field ? there are few options are missing.

this is a a very broad :roll_eyes:

hi Stan…is there any tutorial i can learn from?

did you try an internet?

hi @suny007 the best way to get help is to follow the forum post guide.

When posting please:

  • Required: Share your project’s Read-Only link and live site’s Published link
  • The read-only link is a special URL generated in the Dashboard to allow others to view your project in the Webflow Designer. How to get your project’s read-only link?
  • The published link is the webflow.io subdomain (or any other URL) where you can view the live site. It is IMPORTANT to share this link, as custom code (eg. javaScript) does not run in the Designer or if issue is related to publised site.
  • Describe issue in detail including what page, section and/or element is localized
  • Upload as many screenshots as possible or provide screencast videos to help others help you faster
  • Add a description and/or post a link to a working example of what you’re trying to achieve
  • Reply to users by tagging using the @ sign followed by their forum username like this: @forumMemberName
1 Like

ok…
https://preview.webflow.com/preview/arslans-radical-site-5d4c16?utm_medium=preview_link&utm_source=dashboard&utm_content=arslans-radical-site-5d4c16&preview=e236daa383581cf05c9fc85ed7ea4b43&workflow=preview

I want to add schema for a job post in the <head> of the Job Post Template page. In the +Add Field section, some fields, like the company name, are missing. @Stan

hi @suny007 I see many fields including “company name” :man_shrugging:

1 Like

hi @suny007 try to scroll :sunglasses:

1 Like

oooo man…how stupid am i… THanks @Stan

@Stan job location is missing… how can i add this…

You can’t do that. Your data (fields) are tied to collection and “location” in your collection is a “reference” to other collection. This is WF limitation. There may be a some ways (hacks) to achieve this but…

maybe @memetican will have some idea “how to”

1 Like

for example for “on-site”, “remote” can be a “select” field as it is only one value of many to choose. :man_shrugging:

or just type countries manually into one field to get these values.

here is many requests and discussions about this topic

some job are in multiple locations,UK, USA, london, New York, in location city and country are mixed

in dynamic schema ,how can type countries…

??? template is related to ONE post so if you have simple text field you will get dynamic access to this field as you have with other it just can’t be reference

It is up to you how you will be creative to get around this limitation :wink:

why you need this data in the head anyway? You have these detail data on job post!

job boards always have schema for the job they post: {
@context”: “https://schema.org”,
@type”: “JobPosting”,
“title”: “{{job_title}}”,
“description”: “{{job_description}}”,
“datePosted”: “{{posting_date}}”,
“validThrough”: “{{expiration_date}}”,
“employmentType”: “{{employment_type}}”,
“hiringOrganization”: {
@type”: “Organization”,
“name”: “{{company_name}}”,
“sameAs”: “{{company_website}}”
},
“jobLocation”: [
{
@type”: “Place”,
“name”: “{{location_1}}”
},
{
@type”: “Place”,
“name”: “{{location_2}}”
}
]
}
to get search results like this

@suny007 I think you’re taking the wrong approach to this, given how Webflow is designed.

  • In embeds, there are a number of field types you cannot access such as rich text
  • If you have multi-ref fields, you’ll need a nested collection list to access that referenced data, which would break your JSON-LD
  • Embed fields are HTML encoded, rather than JSON encoded, which means a double-quote or a line break can break your JSON.

Instead, of JSON-LD you should try a Microdata or RDFa approach which are much friendlier with Webflow’s HTML/CSS-centric designer.

If you’re really wanting to do JSON-LD, you can create it with script, but it’s difficult to get Google to consistently process script-generated JSON-LD.

1 Like

Thanks you @memetican @Stan :smiling_face:

1 Like