Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

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

    #251325
    dvpl
    Participant

    Hi,

    I want to send html email, but it always sending Plain text email content.
    Using Thunderbird email client.

    Template showing in Mails->customize, setting not reflecting in email.
    Wordpress : Version 4.4.1
    Buddypress : Version 2.5.1

    Please help what is correct steps to get html emails working.

    #251308

    In reply to: what widget ?

    Paul Wong-Gibbs
    Keymaster

    It’s hardcoded. If you know how to customise a theme and write PHP, you can see the implemetnation: https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php#L355

    bbPress does have shortcodes, I’d suggest doing that instead. I don’t know what the shortcode is, I’d suggest searching on bbpress.org.

    #251305
    Paul Wong-Gibbs
    Keymaster

    Do WordPress post permalinks work? Have you tested them to be sure?

    @mcuk
    Participant

    The code doesn’t remove the bar, it just removes the WordPress logo in the top left.

    The code is put in your functions.php file. It is a file you create (if you haven’t already done so) and put in your child theme folder.

    https://codex.wordpress.org/Child_Themes

    pattz2016
    Participant

    thanks for your response, I do not want to remove WP adim bar, because that is where the notifications appear. I only want to remove the wp-logo. the drop down wordpress menu at the side of the top bar.

    Not the bar itself

    @mcuk
    Participant

    If you mean the WP bar at the top of the screen, then this might help. Add to functions.php

    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 );

    This will remove the WordPress Logo (and therefore the dropdown menu that appears with the link to WordPress.org). If you just want to remove the WordPress.org link in that menu then replace 'wp-logo' with 'wporg' in the function above.

    #251289
    @mcuk
    Participant

    Haven’t encountered that problem myself so wouldn’t really know where to start. The code above does work fine with notifying the person you are trying to be friends with (I’ve just double checked on my project).

    Might even be a conflict with something in your theme or another plugin you are using. You could also try disabling other plugins to check if that is an issue and switching themes to one of the WordPress default themes to see if it works as it should.

    Only other suggestion I can give is to start a new forum thread and maybe someone else has encountered that issue.

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