MaxDeFa
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Flickr Embed] AJAX error: error (Request-URI Too Large)After 3 weeks, I see there’s no support for this plugin ??
Forum: Plugins
In reply to: [List category posts] How do I have the title to the right of the imageIn your custom emplate – see the Template System instruction here: https://www.ads-software.com/plugins/list-category-posts/other_notes/ –
or in your default template
\wp-content\plugins\list-category-posts\templates\default.phpyou must move this
//Post Thumbnail $lcp_display_output .= $this->get_thumbnail($single);
before this
//Show the title and link to the post: $lcp_display_output .= $this->get_post_title($single);
and then in the css of your theme you must add this:
.lcp_catlist img { float: left; margin-right:10px; }
or this if you want also resize the thumbnails (for example 100×100):
.lcp_catlist img { float: left; margin-right:10px; width:100px !important; height:100px !important; min-width:1% !important; }
Forum: Plugins
In reply to: [List category posts] Size of the imagesYou could try to use !important in the css of your theme, like this:
.lcp_catlist img { margin-right:10px; width:16px !important; height:16px !important; min-width:1% !important; }
And, if you want also move thumbnails on the leftside of the excerpt, use float, like this:
.lcp_catlist img { float:left; margin-right:10px; width:16px !important; height:16px !important; min-width:1% !important; }
Forum: Plugins
In reply to: [List category posts] How to put post title under thumbnail?As written here:
https://www.ads-software.com/support/topic/thumbnails-before-post-link?replies=3You can create a custom template (instructions here Template System: https://www.ads-software.com/plugins/list-category-posts/other_notes/)
by copy this file
\wp-content\plugins\list-category-posts\templates\default.phphere (creating directory named list-category-post):
\wp-content\themes\my_current_theme\list-category-posts\and renaming file from default.php to my_default.php
in this renamed file, move this
//Post Thumbnail $lcp_display_output .= $this->get_thumbnail($single);
before this
//Show the title and link to the post: $lcp_display_output .= $this->get_post_title($single);
and don’t foget to declare template name inside the shortcode
[catlist name=catname template=my_default]
if you want to move thumbnails on the leftside of the excerpt, use this code into css of your theme (change width and height with your custom dimensions):
.lcp_catlist img { float: left; margin-right:10px; width:196px !important; height:120px !important; min-width:1% !important; }
Forum: Plugins
In reply to: [List category posts] Thumbnails before post linkBTW, remember that you can also write a custom template instead of change default.php
instructions here: https://www.ads-software.com/plugins/list-category-posts/other_notes/ (Template System)
Forum: Plugins
In reply to: [List category posts] Thumbnails before post linkin the file
\wp-content\plugins\list-category-posts\templates\default.phpmove this
//Post Thumbnail $lcp_display_output .= $this->get_thumbnail($single);
before this
//Show the title and link to the post: $lcp_display_output .= $this->get_post_title($single);