0
That's what I noticed. It turns out to comment on the song in the album and can vote only for registered users.Can I make and unregistered users can also leave comments songs and vote for the songs that they liked?
This is a very important question for me. This built my entire site. :huh:
This is a very important question for me. This built my entire site. :huh:
Responses (16)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0germi wrote:
allowing everybody to post ratins and comments would cost about 150eur, BUT YOU HAVE TO KNOW that in this case you could have a lot of SPAM problems... just warning you..
I guess it would take a couple of weeks. in any case, for custom work you have to contact us through the custom form
Germi
I see/ I'll think about it. -
Accepted Answer
-
Accepted Answer
0well, you can add small code on the mysql statement that makes the request.
but, if you really want to have PAGINATION on comments (AND also allow nonregistered users to post), I would suggest you to give a try at JomComment, because it includes all this out of the box, and MC is compatible with it:
http://www.azrul.com/products/jom-comment.html -
Accepted Answer
0germi wrote:
well, you can add small code on the mysql statement that makes the request.
but, if you really want to have PAGINATION on comments (AND also allow nonregistered users to post), I would suggest you to give a try at JomComment, because it includes all this out of the box, and MC is compatible with it:
http://www.azrul.com/products/jom-comment.html
I do not need JomComment,
I want a component that I have bought you limit the number of comments on the page.
What should I do? -
Accepted Answer
0the component that you bought does not have this option. that's it. it looks like you want a lot (I mean, A LOT) of small things/features/changes that are not there on MC. I have no problem at all on telling you how to achieve these, if they are easy (as a matter of fact, I believe I have helped you in all I could... really..) but maybe you should go for some custom if you need so many modifications!!
I say this in a happy way! just noticing that you need so many small changes (I'm not talking about "problems" or "non-working" things...I'm talking about modifications on the core code and behavior!
anyway, that's what you need:
on /models/album.php line 382 there's is a query:
$query = ' SELECT c.*,u.name as username FROM #__muscol_comments as c ' .
' LEFT JOIN #__users as u ON u.id = c.user_id ' .
' WHERE c.album_id = ' . $this->_id . ' AND (c.comment_type = "album" OR c.comment_type = "") ' .
' ORDER BY c.date ' ;
just add a "LIMIT = 10" clause, like this:
$query = ' SELECT c.*,u.name as username FROM #__muscol_comments as c ' .
' LEFT JOIN #__users as u ON u.id = c.user_id ' .
' WHERE c.album_id = ' . $this->_id . ' AND (c.comment_type = "album" OR c.comment_type = "") ' .
' ORDER BY c.date LIMIT 10 ' ;
-
Accepted Answer
0This limits the comments. Others simply disappear. This is not the answer to my question.
And You are wrong when you say what I too many want. I'm talking about obvious details that should be in your component. All comments in other plugins and modules are always by page navigation. This is obvious.
It's all the same, that sell a car without wheels and then blame the buyer that he asks too much. :S -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0germi wrote:
there's no limit on the number of songs, and there's no pagination.
the reason for that is, well... there are no albums with 1000 songs! I've rarely seen an album with more than 50 songs...
Indeed so. Now I understand. You thought of everything. However, the number of songs probably could also limit how and comments?
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »