Content Ratings

Content Ratings [Paid] 2.7.6

No permission to buy ($35.00)
I'm curious on what sort of bits you would like to see in this add-on?
Personally, I miss all of the reactions and clean icons such as Agree, Disagree, Winner, etc. I liked Post Ratings as it had a clean, sleek design to the reaction bar.
 
Personally, I miss all of the reactions and clean icons such as Agree, Disagree, Winner, etc.
This add-on can import Post Rating reactions types, I don't have a licence for those so I didn't set them up.

I liked Post Ratings as it had a clean, sleek design to the reaction bar.
You can configure that under style properties, as this add-on is fairly configurable in how it displays bits. There is a style on https://xf2.nixfifty.com which implements this
 
How do I get the icon next to the like button to look like the default icon?

The big yellow one looks a bit off.

1519732355225.webp

Is it possible to alter the tooltip delay for the rating description so I can drop it to zero and make it instant? It feels laggy with the delay when trying to browse lots of them.
 
How do I get the icon next to the like button to look like the default icon?

The big yellow one looks a bit off.

View attachment 169946
Currently the icon is chosen what whatever the "default rating" is, this is a global option for this.

Is it possible to alter the tooltip delay for the rating description so I can drop it to zero and make it instant? It feels laggy with the delay when trying to browse lots of them.
Not currently, but it is something I want todo in the next version
 
When I had a play with this on the demo site I didn't like the fact that a user could click the Like Button and it applied a default Like to the post and that to apply a different Like they had to first Hover over the button to open the popup to select their preferred Like.

Is it possible for the Click on the Like button to NOT apply a default Like and instead just opens the popup for the user to then click the Like they prefer?

I can see an issue that a user will unknowingly Click the Like button and the default Like is not the one they prefer...it would be confusing to the basic user...thanks

I looked at the other new Ratings system that when clicking the Like button the list of Likes flew open for the user to select the Like they want which is what I want but I seem to be experiencing issues with the import of the old Luke's Like System
 
Brilliant, thanks DL6

I take it that the import system works accurately as my users are ready to mass murder me for implementing the other one as the import has screwed things up
 
Well I purchased this version and I think it is a lot better than the other one. I do have 4 questions though:
1. How do I get the label to display next to the Like total in a post
2. How do I make the Like icons slightly bigger
3. How can I space the Like icons further apart
4. How do I line up the Like button with the other links in the post (quote, reply)

1.webp
 
1. How do I get the label to display next to the Like total in a post
Under template sv_contentratings_macros should be around line 358
Find:
HTML:
            <div class="sv-rating__count">
                {$count}
            </div>
Replace with
HTML:
            <div class="sv-rating__count">
                {$ratingType.title}: {$count}
            </div>
 
Well I purchased this version and I think it is a lot better than the other one. I do have 4 questions though:
1. How do I get the label to display next to the Like total in a post
2. How do I make the Like icons slightly bigger
3. How can I space the Like icons further apart
4. How do I line up the Like button with the other links in the post (quote, reply)

View attachment 170201
1) Did you means something like;
1519960292268.webp
(from a new "Display rating type titles with rating counts" style property)
2) I'll need to fiddle with the css to figure this out.

3) Fixed in 1.0.8, you can adjust the style property "Tooltip rate menu container", Extra;
Code:
a
{
    padding: 2px;
    border-radius: @xf-borderRadiusSmall;
    margin: 2px;
}
Adjust the padding/margin attribute as required.

4) Fixed in 1.0.8, you can then adjust the "Rate Button" style property. The margin-top: -4px; bits.
 
Will I be able to port my DragonByte Tech: Advanced Post Thanks / Like (Pro) from VB 4.25 , I would like to keep the same Icons we have 10 reactions. they all add reputation points and have thresholds that will highlight the post when a certain number has been given.
This add-on does not have support for importing @DragonByte Tech's Likes add-on. While you can easily create new rating types to match those, and set the URL to use for the icons, this isn't going to help if you want to copy the count totals.

If you are interested in an importer, please contact me (or @DragonByte Tech, as I am willing to provide a dev copy of this add-on) about inquiring into the cost for writing an importer
 
Xon updated Content Ratings for XF2 with a new update entry:

1.0.8 - Maintenance update

  • Add "Display rating type titles with rating counts" style property
    • The "Display rating type titles alongside icons" style property did not add the text to the count.
  • Add "Tooltip rate menu container" style property
  • "Rate button" style property now applies when "Rate menu location" is set to "In-place of XF Like button"
    • Push rating icon up so the Like text should be inline with the other controls

Read the rest of this update entry...
 
4) Fixed in 1.0.8, you can then adjust the "Rate Button" style property. The margin-top: -4px; bits.
Thanks @Xon however that just moves the icon itself but not the whole link and icon. There is actually 2px difference in height for the link and 3px in the icon:
1.webp

I should mention that this is in Firefox (latest), plus in IE and Chrome it is 1px and 2px
 
Top Bottom