Add to wishlist is not visible in my Employee Center catalog item, even though I enabled it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2023 12:25 AM
In the attached image, Add to wishlist is not visible. Kindly help me out....
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/
- 744 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2023 02:04 AM
That's not the upto mark answer. Please clarify it properly.
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-20-2023 03:35 AM
HI @kaushal_snow ,
To enable wish list feature for catalog end users, select the check box for Enable Wish List in the catalog record.
Wish list feature does not function if the property glide.ui.doctype is set to false.
f you want to add it to the main menu of your portal, like the cart, you can add the following to the JSON to your header menu instance:
"enable_wishlist": { "displayValue": "true", "value": true }
Simply go to "Service Portal" -> "Portals". Then select your portal. Open the record refered to in the field "Main menu" by click the "i" icon and then select "Open Record". Then add the code above to the JSON in the "Additional options, JSON Format" field. This is what the complete JSON could look like:
{ "enable_cart": { "displayValue": "true", "value": true }, "enable_wishlist": { "displayValue": "true", "value": true } }
I hope this helps!
Thank you,
Please Hit Correct, Helpful or like,if you are satisfied with this response.