itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] Restrict Write AccessThanks for the suggestion, it’s not built in and while writing this I think … why not? I suppose this should be added right on top of the @todo list for Groups!
Currently you could achieve it by maintaining your own table (relating users allowed to write and post IDs) and using Groups’ API to check if the current user belongs to the group or has the right capabilities needed to edit a post.
Although this doesn’t cover the exact requirement you outlined, a group allowed to fully manage a
Pizzacustom post type would have these capabilities:edit_pizzas edit_others_pizzas publish_pizzas edit_published_pizzas read_private_pizzas delete_pizzas delete_private_pizzas delete_published_pizzas delete_others_pizzas edit_private_pizzasForum: Plugins
In reply to: [Groups] Send emails to usersThere is an extension Groups Newsletters but it will not send out emails automatically when a post is published. It uses campaigns to send out scheduled emails to subscribers and target groups.
Forum: Plugins
In reply to: [Groups] Registered GroupThe Registered group is the default group to which users (i.e. those with an account on the site) belong. Plain visitors (not logged in) do not belong to that group.
The answer to your question depends on what you want to do with that information. If it’s displaying content to someone who is logged in while the same content should be hidden from a normal visitor, then you could use:
[groups_member group="Registered"] Only registered users can see this. [/groups_member]Read more here: http://www.itthinx.com/documentation/groups/shortcodes/
Forum: Plugins
In reply to: [Groups] Content visibility set by User RoleHi Nick,
Groups and roles are different concepts, indicating a role instead of a group doesn’t really make sense within the framework that Groups provides 🙂
Cheers
Forum: Plugins
In reply to: [Groups] How to add link to restricted page in woo commerce groupForum: Plugins
In reply to: [Groups] conflict with custompost type being added to menu?Hi thanks for the feedback 🙂
The plugin you mention shows it’s compatible up to WordPress 3.4.2 compatible. Also I’m not sure if that plugin is even needed anymore, if the post type is properly defined, it will show up in the menu anyway.
Anyhow, do you have a screenshot?
Forum: Plugins
In reply to: [Affiliates] Reward points for AffiliatesHi,
It should be possible, Affiliates supports any currency, also virtual currencies such as points. If an integration awards points, these could then be managed/credited appropriately using that plugin I’d suppose.
Someone would have that code that though. I’d suggest to have a look at the API documentation: http://www.itthinx.com/documentation/affiliates/api
Cheers
Forum: Plugins
In reply to: [Affiliates] Edit affiliate url for 1 user only ?Thanks for the feedback 🙂
It wouldn’t be possible to do that with an option, you could do it with a rewrite rule though.
Forum: Plugins
In reply to: [Affiliates] How to let affiliates choose their own affiliate link name?On #2 it doesn’t pay directly on each referral, you would review the totals for the affiliates periodically and send them the payment through PayPal, bank transfer etc.
When you visit Affiliates > Manage Affiliates and an affiliate has accepted referrals that can be paid, it will show up on their entry.
Forum: Reviews
In reply to: [Affiliates] Unbelievably good pluginHi,
I know it’s been a few months since you wrote it, but I think it’s never too late to say thanks 🙂 Many thanks for taking the time to write a review, there’s additional info available in the Manage Affiliates area now, showing the accumulated totals by referral status. I think this is a very useful and much needed improvement.
As you mentioned that you like the info the plugin provides, you’ll find this addition to be helpful as well.
Cheers
Forum: Plugins
In reply to: [Documentation] does it integrate with Groups or Groups File Access?Hi,
Thanks for asking, the built-in access restriction features of Groups are also applicable to the Document post type that the plugin provides. When you create a new document, or edit and existing one, you will have the same access restriction capabilities as with normal posts or pages (Groups provides an option to enable or disable this by post type).
So with this plugin, you don’t really need GFA, Groups by itself would be sufficient.
Cheers
Forum: Plugins
In reply to: [Groups] Issue on affecting a member to a group… and the next line is trying to pull the group_id from an object which isn’t.
Forum: Plugins
In reply to: [Groups] Issue on affecting a member to a groupHi,
You have an equality test instead of an assignment in your code:
$group_id == 2;… is an equality test and should rather be:
$group_id = 2;If the user already belongs, it won’t duplicate entries.
Forum: Plugins
In reply to: [Groups] Password for Group Join ShortcodeMany thanks 🙂
For what you’re asking, there’s a simple solution which consists in creating a post that is password protected and placing the join button there.
Forum: Plugins
In reply to: [Groups] Greeting member by nameHi, thanks for the kudos 🙂
What you’re asking isn’t really something that you would use Groups for, try searching the plugin section for a plugin that allows to show user info 😉