Dennis
Forum Replies Created
-
Forum: Plugins
In reply to: [D64 LSR-Stopper] Is the project still alive?Yes, there are no updates planned (except security related issues). Sorry!
– Dennis
Doof. Ich würde wohl in der n?chsten Version die ganzen Namen der Helferklasse ?ndern, damit sie wieder einzigartig sind und es keine Kolisionen gibt. Eine ziemlich dumme L?sung, aber leider nicht anders machbar.
The Lightbox Plus is not checking if the Simple HTML Dom class has been already loaded. Try this:
1. Deactive the D64 LSR-Stopper
2. Active Lightbox Plus
3. Active D64 LSR-StopperThis should work.
Sould be now fixed in version 1.0.3
Entschuldige, die so sp?te Reaktion: Das Problem wurde behoben. (Auf der Seite direkt, also kein Plugin-Update notwendig)
Forum: Plugins
In reply to: [Private BuddyPress] [Plugin: Private BuddyPress] Invitation Code CheckerI don’t know if there some alternatives, but currently the plugin is unsupported (last update was end 2009). I can’t say when a new version will be available, but I’m trying to release next week a preview / beta version.
Forum: Plugins
In reply to: [Private BuddyPress] [Plugin: Private BuddyPress] Invitation Code CheckerThe development of Invitation Code Checker is currently inactive, but I can update the plugin for BuddyPress 1.2+ and WordPress 3+.
Forum: Plugins
In reply to: [Private BuddyPress] [Plugin: Private BuddyPress] Feeds are showingChecked it, but the feed is protected. Try to delete cookies or another browser.
Fixed in 1.0.3. Sorry for the delay!
Fixed in 1.0.3. Sorry for the delay.
In 1.0.3 (released today) for this exists now a filter. You can add this function to your functions.php to change the URL where users being redirected if they not logged in:
function redirect_nonloggedin_users($current_uri, $redirect_to) { // Redirect users to the homepage // Caution! Exclude the homepage from 'Private BuddyPress' options // to avoid redirection loops! return get_option('siteurl') . '/?from=' . $redirect_to; } add_filter('pbp_redirect_login_page', 'redirect_nonloggedin_users', 10, 2);
You can change the line that starts with ‘return’ and remove the from value if it not needed.
Forum: Plugins
In reply to: [Private BuddyPress] [Plugin: Private BuddyPress] Hide BuddyPress menueThis is not possible, because for this are changes in the theme are necessary. But you can do it for yourself. Wrap the menu items into this code:
<?php if ( is_user_logged_in() ): ?> The menu item <?php endif; ?>
Now the items are only showed if the user is logged in.
Can you please post the feed URIs (without the domain), so I can check it. Thanks!
I will look after it and post an update if I have founded something what causes this behaviour. Thanks!
Added in 1.0.2 ??