Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 797589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T22:49:56+00:00 2026-05-14T22:49:56+00:00

I have an application that allows for users to create questions, create answers to

  • 0

I have an application that allows for users to create questions, create answers to questions, and ‘like’ answers of others. When a current_user lands on the /views/questions/show.html.erb page I am trying to display the total ‘likes’ for all answers on that question, for the current_user.

In my Likes table I am collecting the question_id, site_id and the user_id and I have the appropriate associations set up between user, question, answers and likes. I think I just need to call this information the right way, which I can’t seem to figure out. All of the below is taking place in the /views/questions/show.html.erb page.

I have tried the following:

    <% div_for current_user do %>
        You have liked this question <%= @question.likes.count %> times
    <% end %>

Which returns all the ‘likes’ for the question but not filtered by current_user

You have liked this question <%= current_user.question.likes.count %> times

Which gives an error of ‘undefined method `question’

You have liked this question <%= @question.current_user.likes.count %> times

Which gives an error of ‘undefined method `current_user’

I have tried a couple of other things but they don’t make as much sense as the above to me. What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T22:49:57+00:00Added an answer on May 14, 2026 at 10:49 pm

    You can use:

    <%= @question.likes.count :conditions => {:user_id => current_user.id} %>
    

    Or:

    <%= current_user.likes.count :conditions => {:question_id => @question.id} %>
    

    Or add scope to Like model:

    named_scope :owner, lambda {|user| {:conditions => {:user_id => user.id} } }
    

    And call it:

    <%= @question.likes.owner(current_user).count %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WPF application that allows users to create questions of all different
I have a web application that allows users to create an account, and in
I have a Backbone.js application that allows users to create graphs based on large
I have an application that allows users to save events. I would like to
I'm using: Hibernate MySQL jBoss I have to create an application that allows user
We have an application that allows users to add/edit/replace/delete content (text, images, swfs, mp3s,
I have a web application that allows users to enter search criteria and the
I have a web application that allows users to build a 'client list.' We
Let say, I have a web application that allows users to upload images and
I have a question web application which allows users to ask questions on specific

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.