Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,776 through 17,800 (of 32,678 total)
  • Author
    Search Results
  • #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 :)

    #30148
    loribella
    Member

    Hi, I have the Business Theme and it does not allow custom menus in my WordPress Dashboard under Appearance>Menus. But there are pages I don’t want in the top navigation area, pages like Protected Content and Sample Page, etc. How can I remove those from navigation?

    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

    nickharambee
    Participant

    Hi,

    I have posted a support ‘ticket’ on the WordPress page for the Buddypress Group Email Subscription plugin here, but as I’m not sure what the timeframe is for a response there, I thought I’d post a topic here in case others have experienced this issue and can offer any advice. It’s the last major issue preventing me from publishing my website, so I’d be glad of any help.

    I have enabled the Group Email Notification plugin, and checked that all items for daily digests are correctly showing up in [site URL]/?sum=1, but no daily digests are getting sent to users.

    I am not sure if the issue is to do with the plugin or my server. Instant notifications appear to be being sent out OK (at least I have been receiving them). I haven’t tested any other options (e.g. weekly digests).

    Any troubleshooting advice would be most welcome!

    Thanks,

    Nick

    #30143
    Norm1
    Member

    I’ve customized the profile page default tab and item-nav order so that Profile is above Activity.

    This is because I want everony else to see a person’s profile first, not their activity, BUT I want people to see their OWN activity not their own profile.

    Basically, if `( bp_is_my_profile() )` then have it redirect to the activity else have it redirect to the profile?

    So how do I edit this to make it work:
    `function bp_profile_homepage()
    {
    global $bp;
    $selected_role = get_option(‘bpahp_role_choice’);
    if($selected_role == ”)
    {
    if(is_user_logged_in() && bp_is_front_page())
    {
    wp_redirect( $bp->loggedin_user->domain );
    }
    }
    else
    {
    if(!current_user_can($selected_role) && bp_is_front_page())
    {
    wp_redirect( $bp->loggedin_user->domain );
    }
    }
    }`

    I posted this on the wordpress forums. I don’t know much about PHP and could really use some help.

    http://wordpress.org/support/topic/plugin-bp-profile-as-homepage-redirecting-to-the-activity

    chroniko
    Participant

    Hi, i’m proudly using buddypress on my blog and i have found a couple of issues/problem on ajax filtering system.

    I’m new here, so i write on this forum after to open a bug/report ticket.

    1. Which version of WordPress are you running? 3.4
    2. Did you install WordPress as a directory or subdomain install? no
    3. If a directory install, is it in root or in a subdirectory?
    4. Did you upgrade from a previous version of WordPress? If so, from which version? 3.3.2
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes, it works
    6. Which version of BP are you running?
    7. Did you upgraded from a previous version of BP? If so, from which version? 1.5.6
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes, but i tested too in news intall without any other plugins
    9. Are you using the standard BuddyPress themes or customized themes? I use custom theme but i tested too on Buddypress default theme
    10. Have you modified the core files in any way? no
    11. Do you have any custom functions in bp-custom.php? no
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? no bbpress tried
    13. Please provide a list of any errors in your server’s log files.
    14. Which company provides your hosting?
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? linux+apache

    First Issue: it’s the same reported here
    http://buddypress.trac.wordpress.org/ticket/2442
    but for some strange reason on bp-activity-templatetags.php file, the line 361 is:
    $include = implode( ‘,’, (array)$favs );
    and not
    $in = implode( ‘,’, (array)$favs );
    as expected and documentated here http://buddypress.trac.wordpress.org/changeset/3480

    Second Issue: On members directory and profile pages, ajax filters not works for plugin tabs like BP Follow plugin, that use custom user listing.
    I spent a bit of time searching in the core code and i found the “problem” in bp-members-template.php file, on the line 184. If $include is true (plugins use it to send array of userid) query is performed by BP_Core_User::get_specific_users. This function not support variable $type, used for ajax filtering.
    Maybe would be a good idea to enable BP_Core_User::get_specific_users() for $type support, or pass the query directly to bp_core_get_users() function. Any ideas?

    And now a future request, to extend filtering system:
    i saw that $type varible, on BP_Core_User class, is limited to these case: ‘active’,’online’,’newest’,’popular’,’alphabetical’
    would be useful to extend it for a custom usage, so we can list user based on custom filter like.. “achievements_points” or “cpoints” or some other nemerical metavalue stored by plugins in wp_usermeta table.
    I wrote a patch (just a bit of code added on bp-core-classs.php), tested and working. If you like the idea i can share it.

    thanks a lot for sharing buddypress plugin

    #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

    Robl987
    Member

    Hi,
    I am currently developing a buddypress website where the login username is a 7 digit number. I have installed a fresh copy of the latest version of buddypress (1.5.6) and WordPress (3.4).

    What I have found that if I private message a member whos login user name is not purely numeric it works fine and the message is sent. If I try to send a message to a member with a pure numeric login username such as 345 or 2433222 it doesn’t matter the length of the number I get a red box at the top of the private message form with the message “There was an error sending that message, please try again”.

    Members with a numeric username can send message fine aswell. Whats weird is if they start the private message conversation the the reply functionality works fine with a numeric username.

    Is this a bug with buddypress core?

    Spec Details below:

    1. Which version of WordPress are you running?
    3.4
    2. Did you install WordPress as a directory or subdomain install?
    Directory
    3. If a directory install, is it in root or in a subdirectory?
    root
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Fresh Copy
    6. Which version of BP are you running?
    1.5.6
    7. Did you upgraded from a previous version of BP? If so, from which version?
    No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    No
    9. Are you using the standard BuddyPress themes or customized themes?
    Standard
    10. Have you modified the core files in any way?
    No
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    Not got bbPress
    13. Please provide a list of any errors in your server’s log files.
    14. Which company provides your hosting?
    Rackspace
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Apache

    Many Thanks,

    Rob

    #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
    Anonymous User
    Inactive

    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.

    sharmavishal
    Participant

    @modemlooper Thanks a million for BP Mobile Plugin and looking forward to TapTapPress releases. Got the following feedback.

    There is a clash with BuddyStream Plugin. The BuddyStream image icons become unresponsive with BP mobile theme (tested with the activity box). Maybe some kind of jquery issue?

    http://wordpress.org/extend/plugins/buddystream/

    Second issue is if we add a URL/Link or an image in the activity box (normally or via BP activity plus plugin) and when this URL/Link or image is clicked on in the activity then in the vertical look the image is not displayed properly. In horizontal alignment of the phone it shows properly. Can this also be kindly looked into.

    http://wordpress.org/extend/plugins/buddypress-activity-plus/

    If you can kindly advise me how to fix this would be really useful

    Thanks in advance.

    #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.
    #30118

    Hi everyone. I just installed BuddyPress 1.5.6 on WordPress 3.4.

    I am trying to create a social site for baseball players. The only hump that I have not been able to figure out is if I can create multiple profiles.

    My dilemma is that though everyone would have the same fields (name, college, age, place of birth, etc.), they would have ‘specialized fields’ as well.

    For example, if I’m a pitcher, my fields would be different from everyone else. If I bat, I’d have different fields as well. If I’m a manager, I would have different fields as well.
    Here are some samples from ESPN, Batting Stats are different from Fielding Stats, and Pitching Stats
    Batting Stats – http://espn.go.com/mlb/stats/batting/_/year/2012/seasontype/2
    Pitching Stats – http://espn.go.com/mlb/stats/pitching/_/year/2012/seasontype/2
    Fielding Stats – http://espn.go.com/mlb/stats/fielding/_/year/2012/seasontype/2

    I am also looking for a plugin(?) where a user can input their own stats.

    Any help would be greatly appreciated.

    #30116
    Calvin Powers
    Participant

    Howdy,

    I am running the latest versions of BP and WordPress. I’m using the Genesis mobile responsive theme called Streamline and the Genesis Connect plugin to BP enable the theme.

    Unfortunately, this combination screws up the mobile responsiveness features of the theme. Not sure what needs to be fixed. I don’t know enough about plugin / theme development to be able to figure out if the problems come from the GC plugin or from BP.

    I have posted a detailed description with screen shots here:
    http://www.cspowers.com/genesis-connect/

    I’d very very much like to see BP support on mobile responsive themes, especially the Genesis mobile responsive themes.

    #30115
    voarsh
    Participant

    Hello.

    I do not know how to disable the confirm email function on WordPress and or buddy press.

    Can anyone help me?

    Calvin Powers
    Participant

    Howdy all,

    I have the latest WordPress and BuddyPress. I’m using the Genesis mobile responsive Streamline theme and the Genesis Connect plugin.

    Unfortunately, BP/Genesis Connect screws up the mobile responsiveness features of the theme and makes it pretty much unusable.

    Has anyone else been able to get BP working with Genesis mobile responsive themes?

    All the details and screen shots are online at:
    http://www.cspowers.com/genesis-connect/

    #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

Viewing 25 results - 17,776 through 17,800 (of 32,678 total)
Skip to toolbar