itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Affiliates] Admin to be able to pay for every sign up Refer linkI suppose that this is what you’re looking for http://www.itthinx.com/2011/07/11/recording-sign-up-referrals/
Forum: Plugins
In reply to: [Affiliates] Different content based on affiliate status?It would be a good idea to have that affiliate status implemented so we can distinguish between affiliates who are pending acceptance and those who are active.
Forum: Plugins
In reply to: [Affiliates] Once I install Affiliates my site went downThanks for the update on that Enrique 🙂
Forum: Plugins
In reply to: [Groups] Groups generating query that takes 10 sec on premium wp serverThanks for the detailed report, looking into it.
Forum: Plugins
In reply to: [Groups] Hide menu items from admin on frontendHi,
Have you checked if the admin override is disabled under Groups > Options :
“Administrator Access Override
[ ] Administrators override all access permissions derived from Groups capabilities.”
Cheers
Forum: Plugins
In reply to: [Groups] Add Anonymous User (not logged in) to GroupI’ve corrected my previous comment, the conditional statement should not be negated.
Forum: Plugins
In reply to: [Groups] Add Anonymous User (not logged in) to GroupHi,
You can identify non-members by checking for their membership with the Registered group.
On this page http://www.itthinx.com/documentation/groups/api/examples/ you will find an example on how to check if a user belongs to a “Foobar” group. Exchange “Foobar” with “Registered” and you can work with
$is_a_member– it will be true for members and false for those who are not.Cheers
Forum: Plugins
In reply to: [Groups] Upgrading to 1.4.10Hi there,
You seem to be missing files, try to delete the plugin folder
wp-content/plugins/groupsand install the Groups plugin again please.Cheers
Forum: Plugins
In reply to: [Groups] How to programatically remove a user to a groupYes that’s correct, see http://api.itthinx.com/groups/source-class-Groups_User_Group.html#173-204
Forum: Reviews
In reply to: [Affiliates] Great pluginMany thanks for rating the plugin 🙂
Forum: Plugins
In reply to: [Groups] How to restrict content from only logged in membersYou can handle this using a specific template for the post type. See the API documentation please.
Forum: Plugins
In reply to: [Groups] New group does not appear in USERS ROLE listYou should rather use a capability exclusive to the Members group. For example, create a “members” capability and assign it to the “Members” group. Then use the “members” capability to restrict access to those posts.
Please also have a look at the documentation http://www.itthinx.com/documentation/groups/
Please post new questions in a new topic, having all in the same topic gets very confusing to those who are interested in reading about a particular solution to a topic that is marked as resolved.
Forum: Plugins
In reply to: [Groups] Get a 404 pagehttp://ww.wp.xz.cn/plugins/groups-404-redirect/ allows you to set up a page and redirect to it where you can show such a message 🙂
This shortcode could be used on the page:
[groups_non_member group="wholesale"] Some products are restricted to wholesale customers only. Bla bla bla … [/groups_non_member]Although that would be shown to anyone being denied access to a page protected by Groups.
Forum: Plugins
In reply to: [Groups] access_s2member_levelxRoles? Groups doesn’t work with roles so it can’t really do anything about these 🙂 Or do you mean capabilities? If so, then you can simply delete them under Groups > Capabilities.
Forum: Plugins
In reply to: [Groups] Meaning of post group-(Capability) meta tagsThe answer to your question at the end is no.
The meta key
groups-groups_read_postindicates a required capability for a user to be allowed to read a post.For example, if you have a capability
premiumand that capability is used to restrict access to a post, you will find an entry inwp_postmetawith meta keygroups-groups_read_postand meta valuepremium. Any group that has thepremiumcapability will allow its users to read the post.