itthinx
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Group membership and redirectKnowledge is power. RFC2616 provides that:
If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Plugin activation error: unexpected T_STRINGYou’re probably running PHP 4 which is not supported.
Forum: Plugins
In reply to: [Groups] content visibility using short code not working for me.A closing shortcode tag appears on top of that page … you seem to have an error in your template or on the page. Once you have fixed that, the shortcode should give you the results as expected.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Warning: illegal offset type in isset or empty in…Thanks hixen 🙂
Tested it with Groups 1.3.0 and Events Manager 5.2.6 and I don’t get the warnings you mentioned.
If this still happens, please re-open and let me know under which conditions exactly and when viewing what page.
Cheers
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] wp_query list Posts RestrictedSimply using a query:
global $wpdb; $posts = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post'" ) );Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Shortcode to list all users for a groupThanks 🙂
That shortcode lists a user’s groups. To list the users in a group use the following short code as in this example:
[groups_group_info group=”Registered” show=”users”]
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Limiting Access to FilesYou can now protect access to Media with Groups but if someone knows the URL of a file, the file can still be accessed although the Media page cannot. The Groups File Access plugin provides access control for files.
Forum: Plugins
In reply to: [Groups] Remove the "groups_read_posts" from the options on create postLatest release features showing it by post type.
Phew, finally got to publish the update that fixes the issue with multiple sliders on the same page. Marking this issue as resolved, please download the latest WunderSlider plugin via http://www.itthinx.com/wunderslider/
The thing about transition effects being applied (as an option) when you change slides manually is on the @todo list 🙂
Forum: Plugins
In reply to: [WunderSlider Gallery] [Plugin: WunderSlider Gallery] FullscreenIt already does, demo : http://wunderslider.com/wordpress/fullscreen/
Forum: Plugins
In reply to: [Groups] Groups automatically added as User RolesIf you want every user to belong to a specific group, you don’t need to do anything at all: users are added to the Registered group automatically.
If you want a separate group that users can join freely, there are shortcodes you can use that let users join or leave groups. For the case of the Members group you mention:
[groups_join group="Members"] [groups_leave group="Members"]Forum: Plugins
In reply to: [Groups] other shortcodes between the 'Groups' don not functionGreat 🙂
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] add users to groupThanks for posting that, no problem related to Groups in there.
There’s probably a conflict with another plugin. First disable all other plugins and try to add a user. Then test enabling other plugin one-by-one and repeat. If you find one interfering please post your results so we can check why that happens.
Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Is there a PHP function like get_user_group()?Forum: Plugins
In reply to: [Groups] [Plugin: Groups] Query API$user = new Groups_User( $user_id ); $groups = $user->__get( 'groups' );An example usage can be found in
Groups_Shortcodes::groups_user_groups().