Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 12,001 through 12,025 (of 22,660 total)
  • Author
    Search Results
  • OK – dumb question but where are the 6 Clean BP folders?

    I’ve looked within the BP zip and they’re not there. When I uploaded the BP Comp. pack (https://wordpress.org/extend/plugins/bp-template-pack/) it actually skipped over step two automatically.

    Where do I go to see them?

    #136479
    frostdawn
    Member

    Hi bollocks187-
    I was just a little confused how groups was intended for use within WordPress/BuddyPress. To give you some insight as far as where I’m coming from, I’m moving from a Groupsite environment. In that environment, you can have ‘x’ number of groups. The groups can by hidden just like in WP/BP, but can have their very own content exclusive to them, which is hidden from non-members of that group (as expected). Likewise, members of a given group can communicate freely between each other. I was looking for a feature set within WP/BP that mimicks that behavior. The other thing missing is a peer recognition feature- kind of like a way for one user to endorse another. (another Groupsite feature). Think of this as a kind of letter of recognition from one user to another, so anyone visiting the endorsed member’s profile would see a senior member/administrator endorses/vouches for/recommends that user. I’ve been working with a messload of different plugins with varying levels of success/failure (far more failures than successes) and was getting a little frustrated -iterative testing to ensure a new plugin doesn’t break existing working plugins and trying to determine the UI for a new plugin since it’s often a sorely overlooked feature for so many developers.

    I’m now looking into the possibility of using groups forums to address some of what I want to do, but am hoping that by doing so, it won’t confuse end users by having them try to contend with two separate types of forums – one open and public, and the other being ‘x’ number of private instances, one for each hidden group.

    #136463
    kimi.keith
    Participant

    Please add me to this question too!

    #136461
    Tammie Lister
    Moderator

    In theory you can use any theme but you’d have to use the template pack https://wordpress.org/extend/plugins/bp-template-pack/ to add the files you need which is what that link valuser supplied does. To be honest, it’s going to take some work / adjusting it’s a case of not knowing how much until you do it really.

    If you are not comfortable with doing this then I’d personally recommend you also have a look at some BuddyPress themes. You can purchase themes for BuddyPress with all the support and bells and whistles of WordPress ones so perhaps that would be an option. There are also a number of very feature full and robust free themes for BuddyPress. https://buddypress.org/extend/themes/

    #136460
    valuser
    Participant

    see https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    There are great volunteers on this forum. When they have the time, I am sure they will assist you.

    #136459
    Robl987
    Member
    #136455
    Paul Wong-Gibbs
    Keymaster

    1) Disable user registration in WordPress, and create user accounts manually via the wp-admin screens.

    2) This is default WordPress multisite behaviour.

    3) You will need some kind of front-end posting form for your theme(s).

    #136447
    frostdawn
    Member

    Thanks Paul-
    Okay, so that begs the question- what are groups used for within WordPress/BuddyPress? If you deactivate forums, there’s not much left. You can’t contact just the people in that group. And I’m still looking for a good plugin to handle making content pages exclusive to certain groups. I’ve tried ‘Groups’ by itthinx, but there is a big disconnect between the actual BuddyPress groups and the groups within the ‘Groups’ plugin. So if I have a pre-existing group, the ‘Groups’ plugin doesn’t recognize it. If I name an existing group within the ‘Groups’ plugin, there is no members associated with it (since it is treated as a new group, but that can only be accessed via the plugin) so security doesn’t really apply. Any light you can shed on this would be appreciated.

    Thanks :)

    nickharambee
    Participant

    AN UPDATE:

    I followed the advice of hughes.chad in this support thread and I managed to successfully manually trigger a Daily Digest email, and confirmed that all emails had been removed from the Digest queue visible in ?sum=1.

    I tried again to send a digest without manually triggering it, and no digest was sent at the time it was supposed to be sent.

    I then added:

    `define( ‘ALTERNATE_WP_CRON’, true );`

    to wp-config.php, as suggested by Boone Gorges in the thread I have linked to, but again no automated Daily Digests were sent.

    So it seems that I have narrowed the issue down to the triggering of wp-cron.php.

    On the last attempt to check what was in ?sum=1 the URL changed to ?sum=1&doing_wp_cron=1340741443.4746210575103759765625, suggesting it was trying to activate the cron_job.

    What else can I try to get this working?

    Thanks,

    Nick

    #136426
    Paul Wong-Gibbs
    Keymaster

    Sounds like you’re might have found a bug. Please would you make a report on http://buddypress.trac.WordPress.org ? thanks

    #136421
    chaoti
    Participant

    May be you can do something with this plugin?

    https://wordpress.org/extend/plugins/author-avatars/

    It works for us with WP 3.4 and BP 1.6.

    So only gravity forms and wordpress?

    #136415
    Paul Wong-Gibbs
    Keymaster

    There’s a BP Followers plugin available on the WordPress.org plugin directory.

    #136402
    Bruce
    Member

    Thanks. I had an old plugin — wordpress private. Switched to Private Buddypress. Works now.

    #136381

    In reply to: Country drop down list

    danbpfr
    Participant

    Hi Hans,
    you have to digg in the prehistorical 1.0 version of BP
    https://buddypress.trac.wordpress.org/browser/branches/1.0?order=name
    where you can find this old coutry field and a csv file with different countries.
    You can find some interesting code in buddypress 1.0/bp-xprofile/bp-xprofile-classes.php

    Good luck ! :-)

    #136380
    Mathieu Viet
    Moderator

    Ok, to set new fields for your members you should read the paragraph ‘Optional: Set Profile Fields’ of this tutorial
    http://wpmu.org/the-illustrated-guide-to-installing-and-setting-up-buddypress-1-5/

    if you mean login in with email, then you can try this interesting plugin https://wordpress.org/extend/plugins/wp-email-login/

    then you can add a function in the functions.php file of your active theme to change the label of the sidebar login form :

    add_action('bp_after_sidebar_login_form', 'bp_login_by_email_adapt_login_form');
    
    function bp_login_by_email_adapt_login_form() {
    ?>
    
    jQuery(document).ready(function($){
    usernameoremail = $("#sidebar-user-login").parent().html().replace(/Username/ig, 'Username or email' );
    $("#sidebar-user-login").parent().html(usernameoremail);
    });
    
    <?php
    }

    or if you’re using a child theme of BP-default theme, you can add/edit the template sidebar.php and replace the label for=sidebar-user-login by Username or email.

    #136378
    Roger Coathup
    Participant

    To build this kind of feature, you need to be a PHP developer:

    • You’d add new profile field groups for each type of stat (or if the stats are too complex for profile fields – a custom component to handle them).
    • You’d then assign a role to each member based on whether they are a batter, pitcher or fielder – ideally implemented using the underlying WordPress user roles.
    • Finally, you’d implement conditional logic in your templates to display appropriate profile field groups based on the member’s role.
    #136366
    foobool
    Member

    <?php

    add_filter(‘show_admin_bar’, ‘__return_false’);
    /**
    * BP-Default theme functions and definitions
    *
    * Sets up the theme and provides some helper functions. Some helper functions
    * are used in the theme as custom template tags. Others are attached to action and
    * filter hooks in WordPress and BuddyPress to change core functionality.

    #136360
    Paul Wong-Gibbs
    Keymaster

    Sorry, I was up late: BuddyPress.svn.WordPress.org

    #136352
    jacor3003
    Member

    That make sense, Thank You.

    #136349
    valuser
    Participant
    #136348
    Paul Wong-Gibbs
    Keymaster

    Ok. Before we play on your test server you need to contact your host and ask if you have SSH access to use a terminal. In the interim, we can try the concept out locally on your Mac.

    How familiar are you with using the Terminal app? (it’s in Applications > Utilities) If not very, you’ll have to do some Googling to figure things out.

    Open the Terminal app. Type these 2 commands:

    cd ~/Desktop
    svn co https://buddypress.trac.wordpress.org/trunk BuddyPress

    That last command might take a couple of minutes. It’ll download a copy of BP trunk. Look at your desktop, and you’ll find a folder called “BuddyPress” containing… BP trunk :)

    Then wait for the BuddyPress team to do a new update to trunk. Easiest way to do this is keep an eye on https://buddypress.trac.wordpress.org/log and remember what “Rev” it’s up to. When you spot an update, open Terminal again:

    cd ~/Desktop/BuddyPress
    svn up

    “svn up” is an “update” command. It figures out what SVN revision your checkout of BuddyPress is on, compares that to the version on the server (it remembers what URL you fetched it from originally), and then downloads and applies any updates automatically.

    This is the method I like doing on my servers, so maybe see if it works out for you.

    #136341
    Roger Coathup
    Participant

    Plaza is a very nice website – it’s also a significant custom development.

    Are you a skilled PHP developer with solid WordPress development experience (writing custom post types, taxonomies, url rewrites and such like)?

    If you have those development skills (and in the case of Plaza – some strong design skills as well) or are willing to hire them in, then yes, BuddyPress is a suitable underlying platform to build the user profiles on, and to provide a backbone where you can unify their reviews and hotel submissions.

    #136330

    In reply to: redirect user login

    valuser
    Participant

    https://wordpress.org/extend/plugins/buddypress-login-redirect/ can redirect to 3 different locations after login. 1. Personal Profile / Personal Activity Page 2. Site wide Activity 3. Friends’ Activity

    https://wordpress.org/extend/plugins/login-with-ajax/ this plugin’s settings allows you go to any particular page OR to the current users particular page on login & on logout if you use %USERNAME% — its on the settings page

    #136329

    In reply to: redirect user login

    edinchez
    Participant

    Not really sure how multisite works, but this plugin here can be configured to work the way you want I think:

    https://wordpress.org/extend/plugins/peters-login-redirect/

Viewing 25 results - 12,001 through 12,025 (of 22,660 total)
Skip to toolbar