catnhat
Forum Replies Created
-
This works fairly well. It would be nice if there were an option to show “#/5” rather than the stars. Many themes like mine have rather narrow widgets and when each post takes 2-3 lines the formatting isn’t great.
It may also be wise to have a setting like: only show posts that have x or more votes.
What I am finding is an unpopular post has only 1 vote of 5/5 and it stays in the top of the widget, even though others have more votes.
Gotta say, this thing works great for such a new plugin and I have it working with MU install, W3 Total Cache including CDN Caching. Couldn’t get any others to work with my configuration. This thing just works. Great job!
Great to see the widget. Will there be any configurations for it? font color, etc.
I do see 2 “info”icons in my widget.
As to what you are seeing with my site, yes its kind of a hack. Basically I have a blog that I want split into 2 separate pages. 1 for news and 1 for photos. I did this with a child theme and custom template that are assigned to a page each.
I will live with the color for now. I don’t want to hack your plugin as I believe there will be more updates to come.
Great plugin by the way!
I think I figured it out.
Because I am using 2 pages/templates to split my blog index by category, I had to enable the “Page” rating to see it in by index/loop.
But I do notice that it is not respecting my advanced font color which is #CCCCCC for all 4 widget setting tabs.
Chek it out here.Further is there a php function I could just insert into my 2 blog templates so that the ratings don’t show up on other pages?
Thanks,
DarcyGreat to hear. This is the only ratings plugin I can get to work with W3 total cache.
But the last update has now hidden ratings from the loope. They still show up under single post.
Forum: Plugins
In reply to: [Get the Image] [Plugin: Get the Image] just output the URLthis post has the answers:
http://wordpress.org/support/topic/plugin-get-the-image-i-need-just-the-url-of-the-image-returnedForum: Plugins
In reply to: [Get the Image] [Plugin: Get the Image] just output the URLI have the same question. Hope someone responds.
Forum: Fixing WordPress
In reply to: the_post_thumbnail returning wrong size imagesI ended up creating a function in my child theme to take car of this. and then called the function instead of using the post thumbnail function.
the code for the function looks like this:
<?php function fc_rel_thumb($postid=0, $size='squareThumb', $attributes='') { if ($postid<1) $postid = get_the_ID(); if ($images = get_children(array( 'post_parent' => $postid, 'post_type' => 'attachment', 'numberposts' => 1, 'post_mime_type' => 'image', ))) foreach($images as $image) { $thumbnail=wp_get_attachment_image_src($image->ID, $size); ?> <img src="<?php echo $thumbnail[0]; ?>" <?php echo $attributes; ?> /> <?php } else { echo '<img src=' . get_bloginfo ( 'stylesheet_directory' ); echo '/images/no-attachment.gif>'; } } add_image_size('squareThumb', 85, 85, true); ?>Forum: Fixing WordPress
In reply to: the_post_thumbnail returning wrong size imagesAm I the only one with this issue?
Forum: Plugins
In reply to: [Mobile Kit] [Plugin: Mobile Kit] Official beta release dateWhat is the status of this plugin? I was trying to figure out how to use it with no luck.
Forum: Fixing WordPress
In reply to: the_post_thumbnail returning wrong size imagesI am already using this with other dimensions for other purposes.
so I tried adding my own with
add_image_size('squareThumb', 85, 85, true);It did the same thing as thumbnails.