Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,776 through 4,800 (of 22,658 total)
  • Author
    Search Results
  • #251563
    shanebp
    Moderator
    #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.

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

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

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

    #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/

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

    #251426
    danbp
    Participant

    Please don’t call out people individually (this was already told to you by @shanebp)

    bp-default is no more the default theme for BP. You can use almost any other existing theme.
    While testing, i recommend you to use one of the Twenty’s theme shipped with WordPress.

    Then to create a child theme and copy into it the needed file from wp-content/plugins/buddypress/bp-templates/buddypress/

    As reminder, a page structure contains at least a header, a content and a footer template, and sometimes a sidebar, depending the theme you use.

    If you open index.php from wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\index.php you should get the search form in that template.

    Though if you asign the Member page as home page in WP’s Read settings, you won’t have to struggle much with customization.

    Read Codex attentively by starting from here.

    You may also explain what you want to do exactly and tell which theme you use.

    #251417
    Paul Wong-Gibbs
    Keymaster

    > When they log in, they would see my wordpress dashboard.

    That itself doesn’t sound like something BuddyPress ought to cause. What caching plugins were/are you running?

    #251416
    Paul Wong-Gibbs
    Keymaster

    Have they ever worked before for you? What plugin or theme or WordPress changes have you made since then?

    #251388
    shanebp
    Moderator

    You might be able to use this filter
    apply_filters( 'bp_email_set_subject', $subject, $this );
    And run stripslashes on the $subject.

    Something like:

    function richdal_email_subject( $subject, $obj ) {
        $subject = stripslashes( $subject );
        return $subject;
    }
    add_filter( 'bp_email_set_subject', 'richdal_email_subject', 15, 2 );

    But you shouldn’t have to, afaik.
    The issue is probably just due to an over-sight.

    You can open a ticket here, using the same user / pw as this forum.

    Include a link to this topic.
    And if you try the filter above, the results of that test.

    Paul Wong-Gibbs
    Keymaster
    #251370
    Paul Wong-Gibbs
    Keymaster

    For BuddyDrive support, post on the WordPress.org forums — thank you.

    https://wordpress.org/support/plugin/buddydrive

    pattz2016
    Participant

    hi,
    I have created a child theme , named it Frontier-child and pasted the code as below. But still the WP LOGO is there.

    <?php
    //
    // Recommended way to include parent theme styles.
    // (Please see https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
    //
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }
    //
    // Your code goes below
    //

    function remove_wp_logo( $wp_admin_bar ) {
    if ( !current_user_can( ‘administrator’ ) && !is_super_admin() ) {
    $wp_admin_bar->remove_node( ‘wp-logo’ );
    }
    }
    add_action( ‘admin_bar_menu’, ‘remove_wp_logo’, 999 );

    Paul Wong-Gibbs
    Keymaster

    See https://buddypress.trac.wordpress.org/ticket/6961

    I’ve added Secure cookie support, but not HttpOnly because some (maybe all) are accessed with Javascript; I haven’t time to audit all the cookies in that level of detail at the moment, so maybe we can do that in the future if someone helps investigate.

Viewing 25 results - 4,776 through 4,800 (of 22,658 total)
Skip to toolbar