Editing the Supplier Banner on the Supplier Collaboration Portal

charri04
Tera Expert

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: 

charri04_0-1725545672275.png


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: 

charri04_1-1725545879295.png



Any help or guidance will be greatly appreciated!


Best regards,

 

 

Corey

1 ACCEPTED SOLUTION

Joakim1
Tera Guru

If you open the page in Core UI you will be able to see the widget instance:

Joakim1_0-1729853677784.png

Open that record and modify the JSON:

Joakim1_1-1729853741681.png

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.

View solution in original post

2 REPLIES 2

Joakim1
Tera Guru

If you open the page in Core UI you will be able to see the widget instance:

Joakim1_0-1729853677784.png

Open that record and modify the JSON:

Joakim1_1-1729853741681.png

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.

charri04
Tera Expert

Thanks @Joakim1 !