I have a view that lists all my elements "Courses" is a Toolset CPT, I need to somehow make a JSON with the data it shows on the screen, following the following example:
<script type="application/ld+json">
{
"@context":"hidden link",
"@type":"ItemList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"url":"hidden link"
},
{
"@type":"ListItem",
"position":2,
"url":"hidden link"
},
{
"@type":"ListItem",
"position":3,
"url":"hidden link"
}
]
}
</script>
In this link you have more info: hidden link
Any idea how I can approach it?
Hi,
Thank you for contacting us and I'd be happy to assist.
To suggest the next steps, I'll need to see exactly how this view is set up in the admin area.
Can you please share temporary admin login details, along with the link to the page with the view?
Note: Your next reply will be private and please make a complete backup copy, before sharing the access details.
regards,
Waqar
Sorry for taking a long time to answer, I finally added the HTML markup in the view and it worked fine.