Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,826 through 6,850 (of 32,678 total)
  • Author
    Search Results
  • #251545

    In reply to: Attempting to register

    Paul Wong-Gibbs
    Keymaster

    Keep an eye on https://buddypress.trac.wordpress.org/ticket/6970

    @bobbyredding Thank you for letting us know about this bug!

    #251544

    In reply to: Attempting to register

    Paul Wong-Gibbs
    Keymaster

    Interesting. This looks like you are indeed running an older WordPress — probably no later than v4.2.6. @bobbyredding An immediate fix is to update WordPress to the latest version. We’ll look into seeing if and how we can fix this (without bumping the required minimum WordPress version) in a small release in two or three weeks’ time.

    Relevant core change was https://core.trac.wordpress.org/ticket/25560, see the commit note. Looks like this was a WordPress bug that was only discovered/fixed relatively recently.

    ngoegan
    Participant

    BTW, I don’t have New User Approve anymore, it has been deleted along with all other login plugins. I turned off all Plugins except WordPress and Buddypress and this issue still occurs.

    #251534

    In reply to: Attempting to register

    r-a-y
    Keymaster

    What version of WordPress are you using?

    If you’re not on the latest version of WordPress, please try upgrading and see if that fixes the problem.

    riseUp
    Participant

    Wordpress version: 2.2.7
    Buddypress version: 2.5.1
    My Site: http://www.ymphony.com

    Hello,

    I am currently using a plugin called WP User Frontend Pro to utilize the ability to create nice front end forms. I also liked their Registration and Login/Logout functionality. Basically, I am using their Registration and Login/Logout functionality for the whole site.

    I also want to use BuddyPress’s social features.

    Can somebody guide me on how to “integrate” the use of BuddyPress to be “underneath” the User Frontend Pro’s registration and login/logout feature?

    In other words, I want users to be able to register, login, and logout via the User Frontend Pro plugin and also be able to register, login, and logout to use BuddyPress.

    Hope the above questions make sense…Thanks!

    #251526
    bobbyredding
    Participant

    I recently activated buddypress onto a live vantage themed wordpress site.
    When a person attempts to register they are redirected to the wordpress admin page.

    Once they click register on the wordpress admin page, the register form is displayed.

    However, after filling in the required information and clicking ‘complete signup’ they are given this message:

    Warning: require_once(extras/class.html2text.php): failed to open stream: No such file or directory in /home/t2jstr5/public_html/wp-includes/class-phpmailer.php on line 2826

    Fatal error: require_once(): Failed opening required ‘extras/class.html2text.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/t2jstr5/public_html/wp-includes/class-phpmailer.php on line 2826

    Anyone know how I can rid myself and potential new users of this problem?

    Note: Allow ‘Anyone can register’ is activated.

    Thank you in advance.

    #251517
    r-a-y
    Keymaster

    Since you are talking about forum post count, you should post this over on the bbPress forums:
    https://bbpress.org/forums

    bbPress adds support for group forums in BuddyPress.

    Here are some hints though:
    https://codex.wordpress.org/Function_Reference/count_user_posts
    http://wordpress.stackexchange.com/a/4727

    r-a-y
    Keymaster

    Thanks for the report.

    We do support default WordPress themes, however new color schemes for default themes is something we really haven’t taken into consideration.

    I’m going to ping @hnla here since he’s our resident companion stylesheet guru.

    hnla – I haven’t looked into this yet, but if 2016 adds a <body> CSS class to denote the new dark scheme, it might be possible to change our BP colors in our 2016 companion stylesheet to reflect 2016’s dark scheme.

    r-a-y
    Keymaster

    Thanks for the report, however BuddyPress doesn’t touch the lost password email. That is a native WordPress email.

    Perhaps you need to configure your SendGrid plugin or SMTP.

    #251505
    shanebp
    Moderator

    I can confirm, using BP 2.5.1, that the “accepted your friendship request” email is not sent.

    The ‘friendship requested’ email is sent.

    Ticket opened.

    #251503

    Topic: display

    in group forum Installing BuddyPress
    praveen08
    Participant

    Each BuddyPress Component needs its own WordPress page. The following WordPress Pages have more than one component associated with them: Members, Groups. Repair

    Thorsten :-)
    Participant

    Hi,
    found out that users can only use lost-password-function in WordPress v4.4.2 and BP v2.5.1 if the website do not use a smtp service for tracking all URLs within an Email.

    Should that be true?

    Best Regards,
    Thorsten

    Valery Kondakoff
    Participant

    Hello!

    Just installed the latest WP beta (4.5-beta4-37037) and BuddyPress 2.5.1. After changing the default Twenty Sixteen theme color scheme to the dark one I noticed, that BuddyPress does not fully follow the new colors.

    Here is a screenshot: http://goo.gl/M8X6fK

    Is this a bug? Should BuddyPress support the default WordPress theme?

    Thank you!

    #251490

    In reply to: Display notifications

    neijisly
    Participant

    It is not possible with wordpress core. I suggest to deactivated your menu and add all page manually like you had do. You can style them properly in the future.

    Tomarrington
    Participant

    I’m running a WordPress theme using BuddyPress (dating site).
    Is there a way to only allow new members to sign up that are only from USA? In other words only allow USA emails to the signup process.

    #251466
    danbp
    Participant

    You can use BuddyPress Member Stats plugin or just this function (in bp-custom.php)

    This example is for group updates only. But you have the general idea. And please, keep calm, if you have a big update writers community, totalizing ALL existing updates can became a mess and a real problem which can slow down a site. You’re warned ! 😉

    function bms_get_total_group_updates_count(){
    global $wpdb, $bp;
    $user_id = bp_displayed_user_id(); 
    
    	if ( bp_is_active( 'groups' ) ) :
    
    	// DB query 
    	$total_updates = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}bp_activity 
    			WHERE component = 'groups' 
    			AND   type = 'activity_update'
    			AND   user_id = '%s' ", $user_id ) );
    									  
    	echo $total_updates;
    
    	endif;
    }

    And for the output somewhere in your template, something like:

    <li><?php _e( 'My updates:', 'buddymemberstats' ); ?>&nbsp;<?php bms_get_total_group_updates_count(); ?></li>

    Yes, i’m the plugin author. 😉

    #251460

    In reply to: Wrong emails editing

    shanebp
    Moderator

    Thanks for providing further info.

    Please create a ticket here using the same user & pw you use for these forums.

    And include a link to this topic.

    #251458

    In reply to: Wrong emails editing

    palla5000
    Participant

    Hi,
    thanks for your reply.

    – By ‘save’, you mean update?
    Yes, sorry for my english

    – Have you tried editing and updating any other emails?
    – If so, did the same issue occur?
    Yes. If we update any mail, the mail are saved as post type, not as BuddyPress Emails type (bp-email type).

    – Have you tried using the Email Repair tool?
    – wp-admin > Tools > BuddyPress > ‘Reinstall emails (delete and restore from defaults).’
    This will delete your current emails including any edits you made to them.
    “Reinstall emails” work fine but the problem is the same: all new mails are not updatable.

    – What version of WP are you using?
    We use WordPress 4.4.2.

    BR

    #251457
    Thorsten :-)
    Participant

    Hi @abuyaman

    I found a HTML solution that works now with WP/BP.

    1. Use WP Better Emails
    https://wordpress.org/plugins/wp-better-emails/

    2. Use SAR Friendly SMTP
    https://wordpress.org/plugins/sar-friendly-smtp/

    And if you don’t have a SMTP service, use SendGrid.com

    Tested and it works for like a charme.

    #251450
    simbaclaws
    Participant

    Hey everyone,
    I’m trying to adjust the admin bar for logged out users so that there is no register and login button and that the anonymous user profile shows up with register, logout, password etc.

    I’ve been searching for a while now and haven’t been able to find out how to do it.
    I’ve tried doing it through my functions.php by using $wp_admin_bar->remove_menu and $wp_admin_bar->add_menu. I’ve even put a script in to check what the node ID’s were of my menu’s in order to be able to remove or add them.

    I’ve seen previous posts where people said that this had something to do with either your theme or your plugins, so I disabled all plugins except buddypress and enabled twenty fifteen theme to see if it changed anything. Which it did not.
    I’m using wordpress 4.4.2 with buddypress 2.5.1 on my localhost machine.

    I’ve also looked at the following page:

    Modifying the Toolbar

    But it seems like this is a deprecated-guide?
    Does anyone know of the current way to make this work?
    I basically want the same wp-admin-bar-my-account to work for logged out users. Which is displayed as node ID: my-account.

    I have already set my site to allow users to register and I have also made sure that logged out users are capable of seeing the bar in my buddypress settings. Which works because I can see the bar with a login and register button on it but not with the my-account profile on it. And I can also use the registration form for new users.

    Does anyone have any ideas on how I can make this work?

    #251445

    In reply to: Unable to Set BP Pages

    pcpro178
    Participant

    No I haven’t because aren’t those pages already built into WordPress? For example, I can go directly to the address mydomain.com/register. I don’t want to reinvent the wheel.

    #251439
    wiziwiz
    Participant

    I am using word press social login https://wordpress.org/plugins/wordpress-social-login/

    #251438
    lanvalencia
    Participant

    I have one website of dating in wordpress, the wordpress is the version 4.5 and the buddypress version is 2.5 and this version do not send the email [{{{site.name}}}]{{friend.name}}accepted your friendship request and the rest of email yes is send, i make new website with this version and do not work, no work in my old site and in the new site, any people can help me? thank you.

    #251436
    pcpro178
    Participant

    I’m unable to set the Search Page, Register, and Activate pages in my BuddyPress settings. I tried the Twentysixteen theme, but it didn’t fix the issue.

    buddypress settings

    How do I go about finding a theme that is fully compatible with BuddyPress? Maybe my expectations are just unrealistic. Is my only option to modify/create a theme and commit to maintaining it as WordPress/BuddyPress evolves?

    1. Which version of WordPress are you running?

    WordPress Version 4.4.2

    2. Did you install WordPress as a directory or subdomain install?
    3. If a directory install, is it in root or in a subdirectory?

    Installed WP at domain 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.

    Yes, this is a new install.

    6. Which version of BP are you running?

    BuddyPress Version 2.5.1

    7. Did you upgrade 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?

    • Akismet (v3.1.8)
    • Bad Behavior (v2.2.18)
    • bbPress (v2.5.8)
    • BuddyPress (v2.5.1)
    • Google Analytics (v1.0.6)
    • Jetpack by WordPress.com (v3.9.4)
    • Wordfence Security (v6.0.24)
    • WP Idea Stream (v2.3.1)
    • Yoast SEO (v3.1.1)

    9. Are you using the standard WordPress theme or customized theme?

    I’ve tried several themes, including the WP Twentysixteen theme.

    10. Have you modified the core files in any way?

    No

    11. Do you have any custom functions in bp-custom.php?

    No, I’ve added nothing.

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?

    bbPress Version 2.5.1

    13. Please provide a list of any errors in your server’s log files.

    ??? I don’t know where these are.

    14. Which company provides your hosting?

    DreamHost

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?

    Apache on Linux

    #251430
    harleycodr
    Participant

    Nope. I just have Buddypress installed without any email plugins. Just using whatever WordPress uses as a standard! I’d love to get this working as I have an organization that I am proposing we convert to this as our members are very active on FaceBook and why not make our organization’s website interactive with BuddyPress.

Viewing 25 results - 6,826 through 6,850 (of 32,678 total)
Skip to toolbar