As my new wordpress themei need a featured image in my post, i don't know How to set wordpress automatically featured Image?
you can do with easily just upload image and it take image as featured image http://wordpress.org/plugins/simple-auto-featured-image/
Related
Django 1.11.2
Wagtail 1.10.1
Apache2.4
I uploaded an image from my computer via the wagtail dashboard. Wagtail shows the image and I clicked "update".
Then I went back to images. There is no new image but a new card with the name of the new file. There is also a picture symbol with the file name of the picture. If I click this field I get the template to edit the image. But the image is not shown (Bildschirmfoto_2018_03_18_17_23_06.png).
Why is the image not shown?
You need to configure Apache to serve files from /media/images/ (or whatever you've set as MEDIA_ROOT in your settings file). See https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/modwsgi/#serving-files
I asked a question in magento stack exchange about magmi image upload. I didn't get any response till now. I wanted to ask the SO community the same question to see if I can get any help. I'll copy the question here.
I am using Magmi to upload images to products in magento. Magmi version is 0.7.21. I am having some issues while uploading new images to products that already has some images.
The issue is that, when I upload new images with new base image set, the old base image gets deleted. The behaviour I expect is to change the base image flag and keep the old base image in gallery instead of completely removing the old image.
I am completely new to Magmi. I am not sure what details are needed to figure out this issue. I can update the question if someone ask me for more specific details. Any help is much appreciated.
In magmi uploading the base image will overwrite current base image - this is just default magmi behaviour. you need to either include the new base image under the base image header and add the existing images as media gallery images under a media_gallery header in the following format - sku_01.jpg::sku_label;/sku_02.jpg::sku_label;/sku_03.jpg::sku_label; or forget about the base image and add the new image under the media_gallery header.
In Bassi Banner Slider, I'm going to upload an image in a slide. The image path has been stored to database, but the image is not uploading to site.
So image is not showing in front end, Only the path is shown.
What's the solution for this ?
Solved....
All the images are coming from the amazon server and i was uploading it to testing server.
On live site, it works well.
I have a problem with wordpress thumb. I installed the last wordpress in localhost and I tried to create a new post with a thumb but when I save it, in the home doesn't appear this thumb.
See the following images:
http://i41.tinypic.com/ffalvk.jpg
http://i42.tinypic.com/6pn3g9.png
This is the image url:
http://localhost/wordpress/wp-content/themes/object/thumb.php?src=wordpress/wp-content/uploads/2012/04/5767096.jpg&w=300&h=200&zc=1&q=100
¿What I'm doing wrong?
Thanks :)
Just trying here as I do not know what plugin is this. However, you can try changing the image URL to this:
http://localhost/wordpress/wp-content/themes/object/thumb.php?src=http://localhost/wordpress/wp-content/uploads/2012/04/5767096.jpg&w=300&h=200&zc=1&q=100
However, I would recommend you to use WordPress in-built Feature Image function to set the thumbnail instead. That is, of course, if your theme allows it.
I have problem with tinyMCE. If I add image from external url (http://www.somesite.com/image.jpg) all works perfect and and the image will show in my text. But if I add an image from a folder on server, the image will not show because I use htaccess to rewrite the url.
Web domain: www.web.domain.com
If I insert image from www.web.domain.com/images/img.jpg and show this text on the page www.web.domain.com/en/Category-1/, the image doesn't show because tinyMCE adds img src as "./images/img.jpg"
Any idea if it is possible to turn this off?
Probably due to TinyMCE using relative URLs by default. Check out the FAQ entry on the TinyMCE site for the various settings that might help.