Title: [Plugin: Auto Post Images (API)] 2 Changes
Last modified: August 19, 2016

---

# [Plugin: Auto Post Images (API)] 2 Changes

 *  [hanimausi](https://wordpress.org/support/users/hanimausi/)
 * (@hanimausi)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-auto-post-images-api-2-changes/)
 * 1- Is it possible to make the thumbnail non clickable? I dont want a
    link.
 * 2- Is it possible to have the thumbnail on the left side instead of
    right side?
   I want to align the thumb on the left side of my post.
 * Anybody or the Developer can help?
 * [http://wordpress.org/extend/plugins/auto-post-images-api/](http://wordpress.org/extend/plugins/auto-post-images-api/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [karunanidhi](https://wordpress.org/support/users/karunanidhi/)
 * (@karunanidhi)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-auto-post-images-api-2-changes/#post-1727820)
 * hanimausi,
 * for #2 you can use custom CSS classes and list that class name in the “Container
   style class” to set the styling for the images, something like
 * .apiimages {
    float:left; clear:left; }
 * for #1: it is possible to do that currently by modifying the code directly. if
   you do that then only the full size image is not available and only the thumbnail
   is available. seems like the functionality you are asking for is to be able to
   upload full size images and then have the plugin show only a smaller/thumbnail
   size image in the post. to do that you can change the line 409 in file auto-post-
   images.php
 * FROM
 * $sHtml .= “[<img src=\”{$sThumbnailUrl}\” class=\”{$this->sImageClass}\” alt=\”{$sThumbSearchTags}\” title=\””.ucwords($post->post_title).”\” />](https://wordpress.org/support/topic/plugin-auto-post-images-api-2-changes/{$sImageUrl}?output_format=md)
   “;
 * TO
 * $sHtml .= “<img src=\”{$sThumbnailUrl}\” class=\”{$this->sImageClass}\” alt=\”{
   $sThumbSearchTags}\” title=\””.ucwords($post->post_title).”\” />
   “;
 * I will make a change to the code in the next version to make the image non clickable
   if “Use thumbnails to link to full size images?” is to “No”. If it is set to 
   yes then the thumbnail will be clickable.

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Auto Post Images (API)] 2 Changes’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/auto-post-images-api.svg)
 * [Auto Post Images (API)](https://wordpress.org/plugins/auto-post-images-api/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/auto-post-images-api/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/auto-post-images-api/)
 * [Active Topics](https://wordpress.org/support/plugin/auto-post-images-api/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/auto-post-images-api/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/auto-post-images-api/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [karunanidhi](https://wordpress.org/support/users/karunanidhi/)
 * Last activity: [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-auto-post-images-api-2-changes/#post-1727820)
 * Status: not resolved