- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2024 07:19 AM
Hello everyone,
I have a quick question, we recently activated the Supplier Collaboration Portal.
On the home page, OOB there is a carousel that shows different pictures with links to other places across the platform.
Does anyone know how to edit the Supplier Banner (I'm wanting to change the pictures and rename/update the links)?
Here's out it looks OOB:
I know the first thing would be to go to Page Designer but when I navigate there, the Supplier Banner is not visible to edit.
Here's how Page Designer looks for me:
Any help or guidance will be greatly appreciated!
Best regards,
Corey
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2024 03:59 AM
If you open the page in Core UI you will be able to see the widget instance:
Open that record and modify the JSON:
Each list item has the following values:
{
"title1": {
"value": "Welcome to Supplier Collaboration Portal",
"displayValue": "Welcome to Supplier Collaboration Portal"
},
"desc1": {
"value": "With Supplier Collaboration Portal, you can check invoice status, resolve issue, collaborate and much more!",
"displayValue": "With Supplier Collaboration Portal, you can check invoice status, resolve issue, collaborate and much more!"
},
"btn_txt1": {
"value": "",
"displayValue": ""
},
"btn_url1": {
"value": "",
"displayValue": ""
},
"img_id1": {
"value": "supplier_welcome.jpg",
"displayValue": "supplier_welcome.jpg"
}
}
Add new items by adding a number to the end.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2024 03:59 AM
If you open the page in Core UI you will be able to see the widget instance:
Open that record and modify the JSON:
Each list item has the following values:
{
"title1": {
"value": "Welcome to Supplier Collaboration Portal",
"displayValue": "Welcome to Supplier Collaboration Portal"
},
"desc1": {
"value": "With Supplier Collaboration Portal, you can check invoice status, resolve issue, collaborate and much more!",
"displayValue": "With Supplier Collaboration Portal, you can check invoice status, resolve issue, collaborate and much more!"
},
"btn_txt1": {
"value": "",
"displayValue": ""
},
"btn_url1": {
"value": "",
"displayValue": ""
},
"img_id1": {
"value": "supplier_welcome.jpg",
"displayValue": "supplier_welcome.jpg"
}
}
Add new items by adding a number to the end.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2024 03:16 PM
Thanks @Joakim1 !