Why image is not reflecting on page properties of touch UI dialog in AEM 6.2 after reloading? - aem

When I reload the page and open page properties, instead of an image which I uploaded, I find the path of that image (i.e of content folder). Can anyone suggest what am I doing wrong?

I got the answer. It was happening because of the image properties that i had provided was not correct.

Related

How to show Image Path in dialog of a component in AEM 6.3?

When you drag&drop images to the dialog, it has to show the path in below to that image.
Can anyone suggest how to implement this?

How to change the facebook ui feed size?

I have included share button in my website. The share button works fine in web browsers.
But when access through mobile, after clicking the share button, the share popup size is same as web browser. So it is not getting displayed properly.
Can anyone please suggest, how to alter the height and width of the feed popup?
Thanks.
Afaik you cannot change the appearance and size of the popups made with FB.ui. You could try opening your own popup:
https://developers.facebook.com/docs/sharing/reference/feed-dialog/v2.0
See "URL Redirection".
One other possibility is to use the "sharer.php", it is even easier to handle because you only need to add the URL as parameter and it will automatically get the Open Graph data from that URL.

Edit an existing app detail page icon or image?

How do you change an app detail image or icon? There is no delete or upload button once you already have uploaded an image to the app detail page(unsbumitted state). There is no way to remove it or change it so you are stuck with it? help?! Tried in safari and chrome...no luck.
On mouse hover the image, you will see the Edit link

Links are not working on UIWebview

In my application, I am using UIWebview to display some url say "Google". The problem is that, it is displaying the web page correctly but the links present on that page are not working.
Say if on Google page I click on map or gmail, then nothing happens. I know, I am missing some minor things, still need help from you.
Check in Interface Builder your .xib with UIWebView, in Attributes Inspector (4th tab of the right panel) in section Web View Detection Links checkbox. It must be checked on in order to make links work.
You also want to make sure that "User interactions Enabled" (in the View section of the attributes tab) is checked.
Make sure your link is constructed exactly like this:
Google
It should just "work".

Dynamically changing Open Graph properties for Facebook Like button?

I am using the jQuery PrettyPhoto as an image gallery. Each image has it's own facebook-like button on the bottom of the image modal. I'd like to have the image that was liked to appear as the thumbnail on the 'user who clicked like's status update related to liking the image. (Also, I'd like the title to be unique, but I am assuming they can be changed the same way, if at all.)
As of now, the Facebook snippet seems to be scraping the gallery meta properties on load, grabbing the og:title and og:image content that is listed there. I've tried to dynamically change these values whenever a new gallery image is clicked, but it seemed to be using the values of the page loaded meta content (which makes sense).
Is there a way to change what the facebook like button sees as the image it should use on-'like'? Each gallery image is dynamically loaded on the same page, only changing the achor value per image. I've tried a number of ways with no success, but maybe someone has some experience with this or a similar issue.
Thanks for any help or leads!
As you didn't supply any example, I checked with here. As I can see they also use original like button, so the og:title and og:image should be different in each image. Instead of images, can you use html in every popup and put image, your like button etc there?
PS: Or else, you have to dynamically change the title of gallery by javascript, which is not a very idea situation. Facebook will always look for og:title for scrapping data, you can't simply feed it by custom code.