Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,501 through 17,525 (of 22,651 total)
  • Author
    Search Results
  • #84391
    Pisanojm
    Participant

    @r-a-y I used your code suggestion and some that I found in Restrict User 2 With Viper’s original Restrict User Plugin
    Found here http://www.viper007bond.com/wordpress-plugins/registered-users-only/
    because I wanted the site to be restricted to registered users only… still allow access to the login/activiate page and ALSO allow access to the feeds…

    I ended up with this.
    // Depending on conditions, run an authentication check
    function MaybeRedirect() {
    // If the user is logged in, then abort
    if ( current_user_can(‘read’) ) return;

    $settings = get_option( ‘registered-users-only’ );

    // Feeds
    if ( 1 == $settings && is_feed() ) return;

    // This is a base array of pages that will be EXCLUDED from being blocked

    if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
    return;

    if ( bp_is_register_page() || bp_is_activation_page() || is_page(‘welcome’) ) //buddypress
    return;

    $this->exclusions = array(
    ‘wp-login.php’,
    ‘wp-signup.php’,
    ‘wp-register.php’,
    ‘wp-activate.php’,
    ‘wp-cron.php’, // Just incase
    ‘wp-trackback.php’,
    ‘wp-app.php’,
    ‘xmlrpc.php’,
    );

    It appears to be working… Do you have any thoughts on the above? Thanks

    #84355
    r-a-y
    Keymaster

    There are limitations, but it depends on what you mean by integration!

    The tutorials I listed integrates single sign-on with standalone bbPress and WordPress, which consequently means BuddyPress as well.

    #84342
    r-a-y
    Keymaster

    Okay, then follow the guide from the previous thread I mentioned:
    http://developersmind.com/2010/06/17/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0/

    Read and implement everything.

    Chances are you’re missing the .htaccess edit and moving /wp-includes/ms-files.php to /wp-content/.

    #84339
    r-a-y
    Keymaster

    Follow the instructions first, primarily you need to edit the .htaccess file and you need to move /wp-includes/ms-files.php to /wp-content/.

    FYI, avatars are stored in the uploads directory, which differs depending on what flavor of WordPress you’re using.

    For single WP, that would be /wp-content/uploads/.
    For multisite, that would be /wp-content/blogs.dir/BP_ROOT_BLOG_ID/files.

    #84328
    r-a-y
    Keymaster

    Avatars are not stored in the DB.

    Doug, it looks like you upgraded from WPMU 2.9.2 to WP 3.0. Chances are you did not fully accomplish all the upgrading steps:
    http://developersmind.com/2010/06/17/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0/

    Follow everything listed there.

    #84319
    r-a-y
    Keymaster

    @alanchrishughes – It sounds like you want to integrate a standalone version of bbPress with WordPress, I’ve already given you directions on how to do this.

    Please do not hijack an old thread, post a new one to discuss your problems, or go on the bbPress forums for help.

    *Edit: Here’s another guide that might be easier to follow:
    http://www.wpmods.com/integrate-wordpress-bbpress

    r-a-y
    Keymaster

    When you upgraded WPMU to WP 3.0, did you correctly upgrade?
    http://developersmind.com/2010/06/17/upgrading-wordpress-mu-2-9-2-to-wordpress-3-0/

    It also sounds like your BP install is corrupted. Here’s a guide to upgrade BP:
    https://codex.buddypress.org/getting-started/upgrading-from-10x/

    #84309
    Jeff Sayre
    Participant

    If you are not yet running BuddyPress, then you will need to visit the WordPress.org support forums. This is a lot of information on this issue. WordPress is the foundation on which the plugin BuddyPress is installed. As you indicate above in your answer to question 6, you do not even have BP installed, so this is purely a WP issue.

    #84301
    footybible
    Participant

    I’m having the same issue using it with wordpress 3.0

    #84297
    Jeff Sayre
    Participant

    You need to contact the plugin author. They have a support group on BuddyPress.org but have not activated their group forum. Please read the readme.txt file or visit the plugin’s page on the WordPress Plugin Repository for information on how to contact them.

    As the How-To and Troubleshooting forum is for supporting BuddyPress, and not 3rd-party plugins (especially ones that require payment to have AdSense code removed), I’m closing this thread.

    @silversurferes, I’m closing this thread per above reasons. You did not do anything wrong. :)

    #84285
    ronia
    Participant

    @johnjamesjacoby Yes Buddypress 1.2.5

    #84283
    rich! @ etiviti
    Participant

    You can only override functions which are pluggable – I don’t believe any exists within BuddyPress (just the standard wp pluggable.php)

    actions are just trigger points that are defined somewhere in the code
    https://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters

    #84262
    Paul Wong-Gibbs
    Keymaster

    Parts of themes have to be written specifically for BuddyPress; the project itself has been out for at least 18 months.

    #84261

    And you are using BuddyPress 1.2.5?

    #84254
    ronia
    Participant

    Anyone please, please ?

    #84253
    dtclarinet
    Participant

    I figured it out. I needed to disable all my plugins and install a compatible theme. The theme updater did not work. Boy, this must be really new if most themes are not compatible.

    David

    #84251
    dtclarinet
    Participant

    I am using 3.0. I installed the conversion plugin, and I am at Step Three

    Now that the template files are in the correct location, click through your site (you can come back to this page at any point). You should see a BuddyPress admin bar at the top of the page, try visiting some of the links in the “My Account” menu. You should find that BuddyPress pages now work and are displayed.

    No such admin bar appears anywhere on my blog. Tried installing buddypress again and reactivating after following steps, and no go, blank page, must ftp delete.

    Tried in specific order you suggested. No go.

    David

    #84250
    Jeff Sayre
    Participant

    This is not currently possible with BuddyPress. There is some talk about allowing multiple BuddyPress installs under a single Multisite-enabled WordPress install, but that would not allow for the sharing of logins and passwords without some additional coding.

    #84249
    Jeff Sayre
    Participant

    Which versions of WordPress and BuddyPress are you running? Also, please answer the rest of these questions: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/

    #84248
    Jeff Sayre
    Participant

    BuddyPress is a plugin that requires WordPress. It does not, nor cannot, have its own install.

    Your issue is more than likely caused by your theme. It is not updated to work with BuddyPress. You need to deactivate BuddyPress. Since you cannot gain access to the admin backend, you need to drag the buddypress folder out of your /wp-content/plugins/ folder. Try logging in again. It should now be possible. Reinstall BuddyPress but do not activate until you have gone through the below process.

    Here is some information on converting your WP theme to work with BuddyPress.

    By the way, if you are using an older version of WP (2.9.1 or 2.9.2) you will have to click the “Activate BuddyPress Site Wide” link instead of the regular “Activate” link.

    #84235

    In reply to: Finding Files

    alanchrishughes
    Participant

    I started to create a child theme for WP once, but I edit things so much I am a basically creating an entirely new theme anyways so I don’t even bother. I just duplicate the default theme folder so I’m not working completely from scratch, name the folder something different, and just go to town on it. A lot of files like the stylesheet and index page I just completely wipe out.

    I had been up all night when I wrote this post, but I think what I was trying to ask was does buddypress not work the same way, where you have an actual file for each page? And instead dynamically generate each page out of scattered php? Is there not a page for activity? a page for forums? a page for groups? for the tabbed members page etc.

    I thought it may be easier to just convert one of my pre-broken down sandbox themes from wordpress and just add some extra code here and there to make it buddypress’able so I know where everything is, but I guess the only documentation for that now is to just use that new plugin converter. But the first thing it told me to do was to start editing the html, which is the opposite of what I need, so I stopped. I also stopped because the files already had the two divs and id’s it said it needed but wasn’t doing anything, I don’t know if it was a wordpress 3 glitch or what.

    #84232
    r-a-y
    Keymaster

    How do WP plugins work in BP?

    Like any other plugin in WordPress! They’re separate entities. So let’s say you decide to use an Events Calendar plugin, that plugin will be in its own little world unless you decide to hack it to be more in rhythm with BuddyPress (display names, avatars, etc.).

    #84230

    In reply to: Minimize the posts

    lincme.co.uk
    Member

    All you do is unzip the theme, then copy it into your /wp-content/themes/ folder and activate it in WordPress. Very easy. You can play with it by editing the files, and activate the default theme if you make a mess.

    #84228
    BillboardFamily
    Participant

    Outstanding. You are a lifesaver. i wish i had more experience with php, and especially wordpress. Thanks so much!

    #84215
    Jeff Sayre
    Participant

    I have not looked at your pasted code. But you are correct in stating that bp-custom.php loads prior to the accessory core BP files. I’d suggest the following tweaks:


    remove_action( ‘bp_setup_nav’, ‘friends_setup_nav’, 5);
    add_action( ‘bp_setup_nav’, ‘my_friends_setup_nav’);

    Basically, hooks are defaulted to a priority of 10. So, you want to make sure that friends_setup_nav is removed before your custom my_friends_setup_nav() is added.

    This is just a quick stab at guessing the proper hook firing sequence. So, if this does not work, I suggest installing my WordPress Hook Sniffer plugin.

Viewing 25 results - 17,501 through 17,525 (of 22,651 total)
Skip to toolbar