- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2023 01:43 AM
Hi All,
In our custom portal, the Copy SC Catalog Item widget does not show the Short Description of Record Producer. where as in OOTB it shows proper info. There is no code change in SC Catalog Item widget .
How does Description and Short Description are called in that widget?
OOTB Widget screenshot-
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2023 02:00 AM
Hi @Jyoti Tripathi The OOB widget displays as per below HTML highlighted
In your custom widget you can do like below to put short desc and description after highlighted line and try
data.sc_cat_item.name= gr.getValue('short_description');
data.sc_cat_item.description = gr.getValue('description');
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2023 01:53 AM
Hi,
Below is the HTML template - highlighted portion is printing short description.
Thanks and Regards,
Saurabh Gupta

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2023 02:00 AM
Hi @Jyoti Tripathi The OOB widget displays as per below HTML highlighted
In your custom widget you can do like below to put short desc and description after highlighted line and try
data.sc_cat_item.name= gr.getValue('short_description');
data.sc_cat_item.description = gr.getValue('description');
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2023 02:51 AM
Hi @Harish KM : In my copy SC Catalog Item Widget these script line and html line is available. But still Short Description is not available

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2023 05:27 PM
Hi @Jyoti Tripathi you can add the below line after line 184 in server script to get values of desc and short desc
data.sc_cat_item.name= gr.getValue('short_description');
data.sc_cat_item.description = gr.getValue('description');
Harish