itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Shortcode booleanMember of A but not of C can be done like this:
[groups_member group="A"] [groups_non_member group="C"] You are a member of group A but you're not in group C. [/groups_non_member] [/groups_member]Member of A and C cannot be expressed currently and nesting the same shortcode within itself unfortunately isn’t an option due to limitations of WordPress’ shortcode parser.
But a solution to the above would be to allow unary negation and binary conjunction of group names (disjunction is already implemented) within the shortcodes’ group attribute – if that were implemented, the shortcodes could be used interchangeably. I see the worth of it and am adding this as a feature request.
Forum: Plugins
In reply to: [Affiliates] [Plugin: Affiliates] Change registration progile link?Do you mean they don’t change their profile on the back end? If so, you could redirect to another URL, similar to the approach shown here:
http://shinephp.com/how-to-block-wordpress-admin-menu-item/Forum: Plugins
In reply to: [Groups] [Plugin: Groups] add users to groupThe code above won’t solve any problem but can show what the problem is. Did the file debug.log contain anything?
Would also be helpful: what other plugins are active on your site?
Forum: Plugins
In reply to: [Groups] other shortcodes between the 'Groups' don not function(Please don’t post on resolved threads, open a new one instead.)
This is due to the quotes you are using: you must use
"quotes and not”:[groups_member group=”turma1″]
Members of the turma1 group would see this.
[/groups_member]Forum: Plugins
In reply to: [Groups] [Plugin: Groups] add users to groupPlease add the following lines to your wp-config.php:
define('WP_DEBUG', true); define('WP_DEBUG_DISPLAY', true); define('WP_DEBUG_LOG', true);below the comment that says “For developers: WordPress debugging mode.”
then try to add a user to a group again and post the contents of wp-content/debug.log (to pastebin.com if it’s big and place link).
Hey Unislash, many thanks for your feedback and taking the time to work with the plugin.
Yes, you could have spared yourself some time 😉 It can handle the WordPress [gallery] shortcode and now also NextGEN Gallery’s [nggallery].
The thing about slides only changing on one slider when there are two looks like a bug, I’ll need to look into that. Odd, because it seems to happen sometimes and sometimes not.
Again many thanks for your feedback, I’ll post an update after looking at the issue with two sliders.
Forum: Plugins
In reply to: [Groups] HTML Line Breaks and GroupsThis rather looks like the wpautop filter’s fiendish plot to me 😉
If you try this …
[groups_member group="Registered"] <p>Example text viewable by "Registered" group members</p> [/groups_member] [groups_member group="Formview"] <div style="background-color:#f00"> <strong>Private Form</strong> <br /> <img src="http://www.website.com/images/image.jpg"> <br /> [gravityform id="1" name="Gravity Form" title="false" description="false" ajax="true"] </div> [/groups_member] [groups_member group="Registered"] <p>Example text viewable by "Registered" group members</p> [/groups_member]… you will see that the red area renders with additional breaks added for those that belong to the ‘Formview’ group.
For those who don’t, no red area is displayed. You should be able to eliminate the extra breaks be writing some things on one line, in any case, Groups doesn’t produce these. Another option is to disable the filter altogether, but then you don’t have it working when you want it to. Tricky sometimes, but I’ve usually come around it by adjusting the page and editing in HTML mode.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] What about guest users?Yes that’s possible, content that is not protected is available to anyone (users who are not logged in aka guest users or simply visitors) and you can also restrict parts of content to be shown to non-members. Have a look at the shortcodes that Groups provides, you can use them and the access control features to do what you describe.
Release 2.1.5 fixes this.
Many thanks again lukewarmmizer for reporting this issue.
Forum: Plugins
In reply to: [Affiliates] [Plugin: Affiliates] Get product and supportThere is Affiliates Pro for PayPal – note that this version is not free though.
Forum: Plugins
In reply to: [Groups] Remove the "groups_read_posts" from the options on create postThanks for the suggestion, this and the option to show or hide this for certain content types I’d like to see added myself. Duly noted and added to the list of feature requests.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Filter the user list by group?That would certainly be very useful, it’s not possible to do it yet but I’m adding this to the requested features list.
Are you using a plugin to do this with roles?
Hey thanks for commenting on this, I’ll check that myself and get back on that.
Forum: Plugins
In reply to: [Decent Comments] [Plugin: Decent Comments] Show comments from current postThe latest release supports the post_id attribute which can be used for that. The widget supported it already before.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Compatibile with Buddypress & wooCommerce?Groups and BuddyPress are completely independent and groups defined in BuddyPress are not related. That can be a good thing or not, depending on what you want to handle of course, so it really depends on your use of groups within Groups and/or BuddyPress.
Anyhow, Groups with the WooCommerce extensions would not have any effect on the groups you define within BuddyPress – some interest has been shown in integrating that, but there’s no integration I currently know of that you could use.