A. Jones
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] WidthYou can install a custom css plugin (do a search for the plugin Simple Custom CSS). Once installed, it should show up in your Appearance menu. Using the Custom CSS plugin:
Copy & Paste the styles below. Replace the width with the width that you would like to use. !important ensures that your custom style will have priority over the default style.
Start Copy & Paste Below this line. Replace the width value with your value.
.postimage,
.postimage img {
width: 150px!important;}
.griditemleft {
width: 150px!important;}
End Copy & Paste Above this line
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Make Thumbnails Smaller?Glad you figured it out!
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Make Thumbnails Smaller?Hi, remember to use !important if you are using custom css. This will ensure that your styles override the styles in the plugin. If you are editing the plugin css file, as per the article that I posted, using !important is not necessary. The instructions below should work with any custom css plugin.
You can install a custom css plugin (do a search for the plugin Simple Custom CSS). Once installed, it should show up in your Appearance menu. Using the Custom CSS plugin:
Copy & Paste the styles below. Replace the width and height with the width and height that you would like to use. You can also change the space around the thumbnail by changing the padding. !important ensures that your custom style will have priority over the default style.
Start Copy & Paste Below this line
.postimage,
.postimage img {
width: 150px!important;
height: 150px!important;
}
.griditemleft {
width: 150px!important;
padding: 10px!important;
}End Copy & Paste Above this line
Save this change. When you are testing your view, make sure that you refresh the page. If you mess it up, just delete it and start over.Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] how to link css into head instead of body?There doesn’t seem to be an easy way to do this via a plugin, as the plugin code is likely added after the header is created. I’m a little confused by this.
You can add it to your functions using the wp_head filter or hard code it into your header. This seems like a really bad way to do something that should be simple.
If you find a way to do it, please let me know and I will incorporate it into the plugin.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Not workingGreat! Thank you for letting me know.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Display page thumbnailsThis plugin is not designed to display child pages. However, if you give the child pages that you would like to display a category, you should be able to display your thumbnails that way.
You could use a plugin like http://wordpress.org/plugins/add-tags-and-category-to-page/
I haven’t been able to test this out with my theme but it should work with the post type set to ‘page’
Replace xxx below with your category id (please see the read me)
[thumbnailgrid cat=’xxx’ posts=’5′ type=’page’]”
Forum: Themes and Templates
In reply to: [WP Opulus] Can't remove calendar in frontpage widgetThanks!
Forum: Reviews
In reply to: [Featured Image Thumbnail Grid] Displays thumbnail and post titleThank you for your suggestion.
You can disable the caption using custom css. Your theme may have a custom css option. If not, you can also install a custom css plugin like this one: http://wordpress.org/plugins/simple-custom-css/
Paste the below code into your custom css editor and save it.
.postimage-title
{
display:none;
}Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] small is incorrect parameter for $sizeThe plugin has been updated. Thanks again.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] small is incorrect parameter for $sizeThank you very much! I will update the plugin.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Not workingThat’s peculiar. It works fine for me. Perhaps you can share with me the browser that you are using and other details so that we can resolve the issue for you.
I am updating the screen shots with a hard copy that I just took from my web site. Sorry that it isn’t working for you.
Forum: Themes and Templates
In reply to: [WP Opulus] Can't remove calendar in frontpage widgetI would love to get rid of this too.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Displays 10 Posts No Matter WhatI updated my demo to illustrate the use of posts_per_page.
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Displays 10 Posts No Matter WhatThis is also covered in the instructions in the read me and the FAQ.
WordPress uses posts per page to control how many posts show up (In “Readings Settings”, look at “Blog pages show at most”. You will see that it is set to 10.
To override this in the thumbnail plugin, use a fixed value for posts_per_page or try setting the posts_per_page value to ’999′. All of the thumbnails for your posts (as long as you do not have more than 999 posts), should display.
This should work:
[thumbnailgrid posts_per_page =’999′]
Forum: Plugins
In reply to: [Featured Image Thumbnail Grid] Demo ?