[SalesForce] Image not visible when viewing from the Community View

I have uploaded the image into the static resource and refer the image to some formula field. Its working fine. But when I am shifting the view form admin view to customer-community view the image not visible.

I think permission issue. but I don't know how to resolve that.

My Formula code :

CASE(   action , "smily", IMAGE("/resource/1395482876000/Images/123.png","smily",20,20))

Community Customer View:

enter image description here

My Admin View:

enter image description here

Best Answer

Use following code in your formula field.

IMAGE(LEFT($Api.Partner_Server_URL_260, FIND( '/services',$Api.Partner_Server_URL_260))++"resource/. imgae
Related Topic