Igor Yavych
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Rating] Not show in other sectionsI don’t know how you expect me to help you if you provide close to none information.
Forum: Plugins
In reply to: [Simple Rating] Ratings aren't showing on the homepage or categoriesThis is because this theme uses the
the_excerpt()when in archive/main page while plugin automatically hooks onlyto the_content().
You can fix this in next way:
Open rating.php, around the beginning there isif ($options['activated']==1&&$options['method']=="auto") { add_filter('the_content', 'spr_filter', 15); }replace it with
if ($options['activated']==1&&$options['method']=="auto") { add_filter('the_content', 'spr_filter', 15); add_filter('the_excerpt', 'spr_filter', 15); }I will fix this in the next version along with other things and improvements alas I’m way too busy with my work so I can’t give any estimate time of new version release. It’s not gonna be any time soon, that’s for sure.
Forum: Plugins
In reply to: [Simple Rating] Multiple rating shown give ID validation problemHmm, change every
#spr_shapesto.spr_shapesin css and js files. Changeid="spr_shapes"toclass="spr_shapes"
I’ll fix that in next version. Well, I’ll fix a lot in new version πForum: Plugins
In reply to: [Simple Rating] Multiple rating shown give ID validation problemHi. Can you clarify your problem? I don’t really get what you mean tbh.
Forum: Plugins
In reply to: [Simple Rating] adding function in custom searchYes, this is how you can do it within the loop
Forum: Plugins
In reply to: [Simple Rating] top rated postsThe only way to achieve what you desire is to modify widget in spr_widgets.php.
I have plans to add ability to add thumbnails to widget in next version but I have no estimated time on arrival of next version since I’m bit busy with other thing.Forum: Plugins
In reply to: [Simple Rating] adding function in custom searchOf course it didn’t work.
$post_idis supposed to be replaced with ID of the post/page/whatever else you got.
$echois supposed to be replaced with true/false (false by default)Forum: Plugins
In reply to: [Simple Rating] adding function in custom searchThere is
spr_get_entry_rating($post_id, $echo)which returns whole html block of rating for entry with supplied id.Forum: Reviews
In reply to: [Simple Rating] Very good PluginOh, well I don’t know spanish so I can’t translate it to spanish. Though if you’re willing, there is how_to_translate.txt in plugin folder, which tells you how to translate. You can translate it to spanish, send it to me and after some proof reading I will add it in the next version.
Forum: Plugins
In reply to: [Simple Rating] Shortcode hint not accessible in hint boxPlease refer to FAQ (https://wordpress.org/plugins/simple-rating/faq/) for a code snippet.
Forum: Plugins
In reply to: [Simple Rating] Top rating widget shows draft/private postsOhh, I see what you mean (even though your formatting is messed up π ). It’s
<ul>instead of</ul>on line 42 after foreach loop.
I updated svn without pushing new version. I will clean up code quite a bit in next version though.
Thanks for mentioning it. I appreciate it.Forum: Plugins
In reply to: [Simple Rating] Error "spr_ajax_object is not defined"That’s because you’re not supposed to run spr_rating directly.
Forum: Plugins
In reply to: [Simple Rating] Support for Custom Post TypesI think you’re mistaken.
is_singular()takes post type as argument so it does account for a custom post type.
Should tailor the logic to allow for posts that are in the loop and not on the homepage.
Yeah, I will fix display for loops not on the home page in the next version.Forum: Plugins
In reply to: [Simple Rating] Share On FBWell, I honestly have no clue why. Plugin doesn’t return that bit which FB parses as part of the link description anymore.
I don’t really know how to help here. Sorry.Forum: Plugins
In reply to: [Simple Rating] Share On FBAre you using some caching plugin?
It’s still parsing<βstyle>#spr_container{text-align:left !important;}<β/style>while it’s not even on the page anymore.
Also, for some reason, ajax object and additional style get added 2 times on your site.
And yes, I tried your page just now and I still see it too.