Adding a photo to a contact - salesforce-service-cloud

how do I paste the photo of the contact, in the contact's photo field which is located on the "Contact Detail Page"?
enter image description here
Photo can be added in Contact through social networking.
Apart from this is there is any option to do this?

You can't add photo to this place. This is only for social media.
You can create custom field to store image. Text Area (Rich) can do this.

Related

How to put an image that is already in-browser into a form

I want to let my users add an image to a form, similar to how they might upload an image from their browser, but I want them to be able to choose an image that is already in the browser on the page that I delivered to them.
Is this possible?
Show a modal that has a gallery of images and let them choose one of them, on clicking save collect the index/unique id of the image and save the form.
Something like this could help you https://stackoverflow.com/a/35543772

Open Whatsapp message box on button click on a web page

I have added some logos at the end of my website. I want to open respective apps based on the logos when clicked by users. This menu is shown when the user accesses the site via mobile
How can I open whatsapp message for a particular number when user clicks on it?
For example for email we have mailto and for telephone we have tel
You can use href of this element to
WhatsApp
For a specific number
href="//api.whatsapp.com/send?phone=91MOBILE_NUMBER&text=WHATEVER_LINK_OR_TEXT_YOU_WANT_TO_SEND"
Please make sure in phone, there is CountryCode 91 for India
They have a function called Click to Chat which I have tested in standard banners.
WhatsApp's Click to Chat feature allows you to begin a chat with someone without having their phone number saved in your phone's address book. As long as you know this person’s phone number, you can create a link that will allow you to start a chat with them. By clicking the link, a chat with the person automatically opens. Click to Chat works on both your phone and WhatsApp Web.
You can create a click to WhatsApp Number (Do note the mobile number needs to have an Active Whatsapp Account)
You can have a click to WhatsApp with Pre-Filled Message
You can click to just a Pre-Filled message. It would then prompt you to select a contact.
Works on web, mobile web and mobile apps
Example of clicthrough URL - https://wa.me/0123456789?text=I'm%20interested%20in%20your%20car%20for%20sale
More info here: https://faq.whatsapp.com/en/android/26000030/
Adding international contacts/phone numbers: https://faq.whatsapp.com/en/general/21016748
On a website that is based on a CMS engine like WordPress, for the case of the WordPress CMS, the page title will be the pre-filled message, which is very useful if you want to know from what website page/title the request is coming.
To create your own link with a pre-filled message that will automatically appear in the text field of a chat, use <a href="whatsapp://send?text= <?php the_title_attribute(); ?> &phone=:whatsappphonenumber </a>
Where: the_title_attribute(); is the WordPress Function retrieving or displaying the current title, and
whatsappphonenumber is the WhatsApp number used to receive the message.

html/css How can I show the clicked photo in a gallery at the top of the page?

I want to make 1 html page a gallery for my website. Instead of making a page for the title and description of every picture, I would like to show the information of the last clicked image above the gallery. (pics of video game items and how/where to obtain them, to be specific)
Basically when you go to the website, you will see a blank image spot, a description that says "click one below" and a gallery below. Once an image is clicked, it scrolls you back to the top and changes the blank image spot and description to the relevant picture.
This would save me from creating 100+ pages for each dedicated item and description, without clogging 1 page with TONS of information. Thanks
(preferably with only html/css because that's all I know, but a simple copy pasta of something else would help as well)

Adding profile picture to the contact using SaveContactTask in windows phone

I am trying to add a contact in windows phone using code with SaveContactTask.
I am required to add a photo to this contact which will be the profile picture
when viewed from the People hub. But i can not find a way how to do that.
Well, one can go the People hub and can edit the contact to manually to add a photo by
tapping edit -> Add Photo -> choose from photos. But i need to do that using code so that
i can associate a photo to the contact that i am adding.
Can anyone help me find a way?
I am facing the same problem. i have been looking for any kind of solution but i believe its not possible for now as its stated in comments above. The only thing you can do is save contact by SaveContactTask and then separately save picture to MediaLibrary using method SavePicture and then user can add picture to contact manually by editing contacts that you created in your app. Thats the closest you can get for now.

How to share single image post on facebook in basic HTML?

I have an Image Gallery with 16 images in basic HTML.
When a user clicks on an image, the image will pop up. Nothing else.
I added Facebook, Twitter and Google+ icons on every image, but is it possible to share every single image on Facebook?
I am only able to share the website link, but I want to share those 16 images separately on Facebook.
So when a user clicks on an image to share to Facebook, then only this image will be shared, not the other 15 images.
Please give me some ideas.
I have been struggling with this the last few days.
Thanks in advance.
Use the share button social plugin and make it specific to each image (see https://developers.facebook.com/docs/plugins/share-button/ ). Be sure to read the section titled "Can I use the Share Dialog without using the Share Button?"