carblanco
Forum Replies Created
-
Forum: Plugins
In reply to: [amr users] [Plugin: amr users] user photo?I’m using another plugin but with amr users I can get that field, so Can I add something like “<img url=field” (before) and “></img>” (after)?
Thx.
Yes, I can assign view_cimy_extra_fields capabilities to standard roles, but there is no sense in assigning that to my custom roles because I can’t select them from your plugin.
I mean, in your dropdown menu I can only select Anonymous, Subscriber, Editor, Author and Administrator, not my custom roles with the capabilities I need.Forum: Plugins
In reply to: [Cimy User Extra Fields] [Plugin: Cimy User Extra Fields] Advanced optionsDo you mean that:
ADVANCED OPTIONS:
Advanced options have been introduced in v2.1.0 to accommodate some extra options per field.
Multiple options should be comma separated ‘,’Which options?
Could you add an example? It’s not very self explanatory.Thx.
Forum: Plugins
In reply to: [Cimy User Manager] [Plugin: Cimy User Manager] Some questionsHow and how much?
Forum: Plugins
In reply to: [Cimy User Extra Fields] [Plugin: Cimy User Extra Fields] Section TitleSolved 😉
Forum: Plugins
In reply to: Commenters per postFinally working.
Thanks.Forum: Plugins
In reply to: [amr users] [Plugin: amr users] Drop-down menu for orderingI’m thinking in something like “automatic filters” in Excel or Google Spreadsheets, you can filter ASC or DESC but also by a value.
Forum: Plugins
In reply to: Commenters per post1) Same results…
Using<?php $comms = get_comments('post_id='.$post->ID.'&status=approve');I get 4 external comments with 0 comments.
Could we use ‘&status=approve&status!=trash&status!=spam&status!=hold’?Forum: Plugins
In reply to: Commenters per postSorry for being a pain in the ass but:
1. Something is not working properly in the home.php. In general is counting right but for some reason there is a post with 0 comments and 4 external commenters…
2. I think that the code is not counting admin comments. Is it possible?
If not, then always we have a -1 difference.3. Post with 0 comments are showing 0.
I mean:
– If the post has 0 commentes, then we had 1 user (only the author)
– If the post has 3 comments made by other users, then we had 3 + 1 users
– If the post has 3 comments and 1 of them is made by the author, then we had 2 + 1 usersThanks.
Forum: Plugins
In reply to: Commenters per postThanks.
Sorry for the confusion… what I need is counting how many users are joining a post.
– If the post has 0 commentes, then we had 1 user (only the author)
– If the post has 3 comments made by other users, then we had 3 + 1 users
– If the post has 3 comments and 1 of them is made by the author, then we had 2 + 1 usersForum: Plugins
In reply to: Commenters per postThe only think I can’t understand is why the code works in the single.php but not in the home.php, posts with 0 comments appear with 5-6 commenters.
What am I not seeing here?Forum: Plugins
In reply to: Commenters per postUnderstood, thanks.
Forum: Plugins
In reply to: Commenters per postAlso, if there aren’t comments I get a nice “Warning: array_unique() [function.array-unique]: The argument should be an array in” 😉
Forum: Plugins
In reply to: Commenters per postThanks again.
I think that you are not counting the post author always and if it’s also a commenter then don’t count.
I mean:
– initially the post users are the author + commenters
– if the author is also a commenter -> don’t countForum: Plugins
In reply to: Commenters per postWOW, alchymyth, many thanks.
One more question…
Now I want to count unique users who have participated in the post, I mean, unique commenters + 1 (post author). But what happen if the post author is also a commenter?