can someone tell me how i can display a link (with the title to the picture) on a wordpress page, instead of actual picture?
so the tinymce of wordpress creates after i added a picture somethin like that:
<p><img src="url" alt=""/></p>
i want just this:
<p>wp title of the pic</p>
is this possible, is there maybe a plugin? Would be great if someone can help me.
Thx
Related
guys I want to send some photos to my friend but when I want copy specific photo URL from gallery, so I can copy just gallery URL no photo. Is there any way to change it to see URL for photo ? I attach some photos for better explain.
I tried to change permalinks in settings and also watched in gallery, but in gallery are no settings. But I found that gallery is using ModuloBox.
This is how is URL in gallery preview
Here you can see that URL is same like in gallery
And this is what I need (watch URL)
There is a share option in the top right of your gallery which generates a link for you:
https://www.flyingslovak.eu/galleries/slovakia/?guid=photography_gallery_5273&mid=8
Have you tried to open the image you want in the slider, then right clicking on the large image and choosing 'Open image on a new tab'? Not quite sure thats the right wording, but it is something like that.
In the new tab you get the URL for the image - something like www.example.eu/wp-content/uploads/2019/01/01.jpg
I've recently migrated a blog from Blogger to a fresh WordPress install and all the content was transferred successfully. However, I've noticed all images attached to posts are linked to their original URLs at Blogger.
I'd like to update all images hrefs to their own WordPress URL, but I'm not sure how to do it.
All images are linked like this:
<a href="https://1.bp.blogspot.com/-gZsYD5y6Uyo/WyEjtVFQOgI/AAAAAAAAd74/-73I4Y3OrCEIc7yr4Ca1cmhKrNHqdtjyQCLcBGAs/s1600/Dicas%2Bde%2Bhoteis%2Bem%2Bsetubal.jpg" src="http://example.com/wp-content/uploads/2018/06/Dicasdehoteisemsetubal.jpg"/></a>
And I'd like them to be like this:
<a href="http://example.com/wp-content/uploads/2018/06/Dicasdehoteisemsetubal.jpg" src="http://example.com/wp-content/uploads/2018/06/Dicasdehoteisemsetubal.jpg"/></a>
Can you help me?
Well referencing images on WP can sometimes prove to be trick using their own library as they are not exactly showing the real pathway. you can try as they suggest on codex : Using Images.
Or you can upload the images on a public server like Imgur: https://imgur.com/upload and get the image link for referencing in your code.
Good Luck. :)
You can update the links manually through post editor or use a plugin like velvet-blues-update-urls
I'm using WordPress and I want to include some PDF documents. I don't want to put links, I want to make a picture of it and below it to write a title, short content or anything simple that looks good.
for example like this:
or like in this link Example.
I searched for a plugin but I couldn't find one that makes this? I tried some but nothing useful? Can somebody give me any idea or any name of a plugin ? Thanks in advance :)
I'm not sure how you inserted the image on your Example link, some fancy box shortcode? You need to a link as shown below that points to your PDF file instead of the fancy-box pop-up. I don't use fancy box, do they give you an option to specify a target link for an image?
<a target="_blank" href="/path/to/downloadfile.pdf" class="image">
<img width="50" height="55" alt="" src="http://swapno-bd.org/beta/wp-content/uploads/2016/01/Trg-Rights-Entitlement.jpg">
</a>
I have a Magento website and have facebook Like link on it. Clicking on it allows me to share that product on my FB wall... But it sometimes shows the right thumbnail image and description and sometimes it doesn't.
Could any one help me fix this? Is this a known bug or soemthing that I need to tweak in order to fix it?
Once you change the image in your website the image wont be changed in facebook until it scrapes it again.
To scrape it again you can use below url
http://developers.facebook.com/tools/debug
I have a photo website which gathers images from a folder with PHP, displays their thumbnails on a page and, when clicked, opens a fancybox (fancybox.net) to display the full image. I am pretty satisfied with the result but as users start posting, they start asking for new features, and problems come out since I'm not a programmer. What I would like to do is a photo commenting/rating system (like the one on facebook to get the idea, but obviously not as complex): I've been trying to add a Disqus code to each picture, but it won't get displayed in my fancyboxes...So the question is, can you give me any (easy-to-implement) ideas on how to achieve this? I don't mind using already existing softwares like disqus for comments and polldaddy for ratings, since I guess it would require me to setup a mysql database to do it on my own...
To brief it again:
I have a "thumbs" folder which are gathered on a page.
I have an "originals" folder with the full size images that are called back by the fancybox.
I would like to have comments+rating in the fancybox.
Thanks in advance for any advice you can give me.
For your fancybox implementation I'm assuming that it's just pulling the image into the lightbox, not other content (i.e. a html page). What you'd need to do is set up a page which would grab an image, and output it along with your comments + rating code, then set up your script to use that page as the fancybox URL instead of a direct link to the image.
Without more information to go on I can't really help more than that.
ps for comments the Facebook Comments plugin might be easier for a non programmer to implement than Disqus.